Skip to content

Commit 8ba7263

Browse files
authored
Update handtuning.md
I think this should be `C(x,y) :- A(x), B(y).` for this optimization to make sense?
1 parent e9f5ae8 commit 8ba7263

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pages/docs/handtuning.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ A(x+1) :- A(x), x < N.
6666
B(x) :- A(x).
6767
6868
.decl C(x:number, y:number)
69-
C(x) :- A(x), B(x).
69+
C(x, y) :- A(x), B(y).
7070
7171
.decl D(x:number, y:number)
7272
D(x,x) :- C(x,x).

0 commit comments

Comments
 (0)