ForAll
This commit is contained in:
parent
6b46965435
commit
256a189125
4 changed files with 70 additions and 4 deletions
|
@ -123,6 +123,7 @@ open class Preprocessor {
|
|||
term.functor == "write/1" -> Write(args[0])
|
||||
term.functor == "read/1" -> Read(args[0])
|
||||
term.functor == "initialization/1" -> Initialization(args[0] as Goal)
|
||||
term.functor == "forall/2" -> ForAll(args[0] as LogicOperand, args[1] as Goal)
|
||||
|
||||
else -> {
|
||||
term.arguments = args
|
||||
|
|
Reference in a new issue