Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
bmtrager committed May 22, 2024
1 parent 046ceb3 commit a98c258
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions coq/FHE/arith.v
Original file line number Diff line number Diff line change
Expand Up @@ -3027,8 +3027,12 @@ Proof.
intros.
assert (Posz p != 0) by lia.
generalize (nearest_round_int_le_const_nat _ _ _ H1 H0); intros.
rewrite /absz.
case E: (nearest_round_int a p).
rewrite nearest_round_int_odd_abs //.
assert (p != 0%N) by lia.
assert ((0 : int) <= `|a|)%O by lia.
generalize (nearest_round_int_pos p `|a| H3 H4); intros.
rewrite {1}/absz.
case E: (nearest_round_int `|a| p).
- admit.
- admit.
Admitted.
Expand Down

0 comments on commit a98c258

Please sign in to comment.