Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
Kaiyu Yang authored Sep 16, 2023
1 parent 02ce6c9 commit af0159c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def retrieve(state: str, premises: List[str], k: int) -> List[str]:
topk = scores.topk(k).indices.tolist()
return [premises[i] for i in topk]

for p in retrieve(state, premises, k=2):
for p in retrieve(state, premises, k=3):
print(p, end="\n\n")
```

Expand All @@ -150,6 +150,8 @@ def <a>nat.gcd</a> : nat → nat → nat
| (succ x) y := have y % succ x < succ x, from mod_lt _ $ succ_pos _,
gcd (y % succ x) (succ x)
@[simp] theorem <a>nat.gcd_zero_left</a> (x : nat) : gcd 0 x = x
@[simp] theorem <a>nat.mod_self</a> (n : nat) : n % n = 0
```

Expand Down

0 comments on commit af0159c

Please sign in to comment.