Add support for SOFT_BIND (which PGF runtime doesn't support)

This commit is contained in:
John J. Camilleri
2021-02-16 14:51:29 +01:00
parent 4d1217b06d
commit 23e49cddb7
5 changed files with 29 additions and 15 deletions

View File

@@ -1,7 +1,9 @@
abstract Bind = {
cat S ; F ;
cat S ;
fun
FtoS : F -> S ;
f1 : F ;
f2 : F ;
f1 : S ;
f2 : S ;
concat : S -> S -> S ;
bind : S -> S -> S ;
softbind : S -> S -> S ;
}