Skip to content

Commit 10a8601

Browse files
committed
fix examples
1 parent 11d9be5 commit 10a8601

File tree

6 files changed

+3
-5
lines changed

6 files changed

+3
-5
lines changed

tests/example/CMakeLists.txt

-2
Original file line numberDiff line numberDiff line change
@@ -131,5 +131,3 @@ positive_test(tree)
131131
positive_test(triangle)
132132
positive_test(turing1)
133133
positive_test(weighted_distances)
134-
positive_test(lucas)
135-
positive_test(nfsa2fsa)

tests/example/lucas/lucas.err

Whitespace-only changes.

tests/example/lucas/lucas.out

Whitespace-only changes.

tests/example/minimum_spanning_tree/minimum_spanning_tree.dl

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
node(x) :- graph(x,_,_) ; graph(_,x,_).
1515

1616
.decl edge(id:number, x:symbol, y:symbol, w:number)
17-
edge($,x,y,w) :- graph(x,y,w).
17+
edge(autoinc(),x,y,w) :- graph(x,y,w).
1818

1919
.decl edgePosition(id:number, pos:number)
2020
edgePosition(id,0) :- edgeFirst(id).

tests/example/peano_arithmetic/peano_arithmetic.dl

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
.decl A(x:SExpr)
1717

1818
// this represents the expression 2 * (1 + 1)
19-
A($Mul($Succ($Succ($Zero)), $Add($Succ($Zero()),$Succ($Zero())))).
19+
A($Mul($Succ($Succ($Zero())), $Add($Succ($Zero()),$Succ($Zero())))).
2020

2121
// Represents the symmetric reflexive transitive closure of the
2222
// reduction relation usign an equivalence relation in Souffle.

tests/example/sort/sort.dl

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ ToCat(s_b,[h,s_a]) :-
6363

6464
// Assign each value a unique index; 0,1,2,...
6565
.decl Indexed(x : value, i : index)
66-
Indexed(x, $) :- InputVals(x).
66+
Indexed(x, autoinc()) :- InputVals(x).
6767

6868
// Build the list
6969
.decl InList(l : list, i : index)

0 commit comments

Comments
 (0)