GITLAB
Salvador Abreu
/
PaCCS
Toggle navigation
Sign in
Sign in
Project
Files
Commits
Network
Graphs
Issues
0
Merge Requests
0
Wiki
Download as
Email Patches
Plain Diff
Browse Code »
Commit
9d72db4e9a39ba260a4bf11e0c0a9890e97f5ee5
Authored by
Salvador Abreu
2015-06-18 10:39:47 +0900
1 parent
c105ab51
Exists in
master
rename predicate
Showing
1 changed file
with
7 additions
and
0 deletions
Show diff stats
fzn-parser/fznslurp.pl
Side-by-side Diff
Inline Diff
fzn-parser/fznslurp.pl
0 → 100644
Wrap text
Diff comments
View file @
9d72db4
...
...
@@ -0,0 +1,7 @@
1
+% == No, Emacs this is -*-Prolog-*- code, not what you thought... =============
2
+
3
+load_ast(AST) :- load_ast(_>[], [], AST).
4
+
5
+load_ast(end_of_file, AST, AST).
6
+load_ast(IN > INT, IN, OUT) :- read(OP), load_ast(OP, INT, OUT).
7
+
...
...