Skip to content

Commit

Permalink
Remove names from the ECDSA proof that do not resolve to anything, and
Browse files Browse the repository at this point in the history
are unnecessary to the proof.Now that we are being more carefule about
naming, these produce errors.
  • Loading branch information
robdockins committed Oct 30, 2020
1 parent 07c4690 commit 3d47c3d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions examples/ecdsa/ecdsa.saw
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ let ec_full_add_spec ss = do {
unfolding ["p384_ec_full_add"];
simplify ss;
unint_z3 [ "p384_field_add", "p384_field_sub", "p384_field_mul"
, "p384_full_add", "p384_mod_half", "p384_ec_double"
, "p384_mod_half", "p384_ec_double"
];
};
};
Expand All @@ -598,7 +598,7 @@ let ec_full_sub_spec ss = do {
simplify ss;
unint_z3 [ "p384_ec_full_add", "p384_ec_double", "p384_field_add"
, "p384_field_sub", "p384_field_mul"
, "p384_full_add", "p384_mod_half"
, "p384_mod_half"
];
};
};
Expand Down Expand Up @@ -811,7 +811,7 @@ let ec_twin_mul_spec ss = do {
beta_reduce_goal;
simplify ss;
unint_z3 [ "p384_ec_twin_mul_init", "p384_ec_twin_mul_aux1"
, "p384_ec_twin_mul_aux2", "p384_ec_twin_mul_aux_f"
, "p384_ec_twin_mul_aux2"
];
};
};
Expand Down

0 comments on commit 3d47c3d

Please sign in to comment.