mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-22 19:22:50 -06:00
Transfer: Changed transfer program file extension from .tr to .tra to avoid collision with Troff file extension.
This commit is contained in:
19
transfer/examples/widesnake.tra
Normal file
19
transfer/examples/widesnake.tra
Normal file
@@ -0,0 +1,19 @@
|
||||
import bool
|
||||
import stoneage
|
||||
|
||||
monoid_Bool : sig { zero : Bool; plus : Bool -> Bool -> Bool }
|
||||
monoid_Bool = rec
|
||||
zero = False
|
||||
plus = \x -> \y -> x && y
|
||||
|
||||
isSnake : (A : Tree) -> Tree A -> Bool
|
||||
isSnake _ x = case x of
|
||||
Snake -> True
|
||||
_ -> composFold ? ? compos_Tree Bool monoid_Bool ? isSnake x
|
||||
|
||||
wideSnake : (A : Cat) -> Tree A -> Tree A
|
||||
wideSnake _ x = case x of
|
||||
Wide y -> let y' : CN = wideSnake ? y
|
||||
in if isSnake CN y' then Thick y' else Wide y'
|
||||
_ -> composOp ? ? compos_Tree ? wideSnake x
|
||||
|
||||
Reference in New Issue
Block a user