diff options
| author | Pierre-Marie Pédrot | 2019-12-24 13:23:14 +0100 |
|---|---|---|
| committer | Emilio Jesus Gallego Arias | 2019-12-26 12:27:17 +0100 |
| commit | e17ee7629006dd119393727a3203bc6e602d5473 (patch) | |
| tree | 4d52aabee98537c35ac70d9d926d742a80d28332 /plugins/omega | |
| parent | feea1d0377e2fb083efe74cd241e7867d008d5be (diff) | |
Deprecate the "omega with *" syntax.
Changes to the test-suite were backported from PR #11288.
Diffstat (limited to 'plugins/omega')
| -rw-r--r-- | plugins/omega/g_omega.mlg | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/plugins/omega/g_omega.mlg b/plugins/omega/g_omega.mlg index 84964a7bd2..a464aa7287 100644 --- a/plugins/omega/g_omega.mlg +++ b/plugins/omega/g_omega.mlg @@ -45,13 +45,16 @@ let omega_tactic l = (Tacticals.New.tclREPEAT (Tacticals.New.tclTHENLIST tacs)) (omega_solver) +let omega_with_deprecation = + Deprecation.make ~since:"8.11.0" ~note:"Use lia instead." () + } TACTIC EXTEND omega | [ "omega" ] -> { omega_tactic [] } END -TACTIC EXTEND omega' +TACTIC EXTEND omega' DEPRECATED { omega_with_deprecation } | [ "omega" "with" ne_ident_list(l) ] -> { omega_tactic (List.map Names.Id.to_string l) } | [ "omega" "with" "*" ] -> |
