diff options
| -rw-r--r-- | Makefile | 4 | ||||
| -rw-r--r-- | dev/changements.txt | 10 |
2 files changed, 12 insertions, 2 deletions
@@ -96,10 +96,10 @@ ARITHSYNTAX=parsing/g_natsyntax.cmo parsing/g_zsyntax.cmo PROOFS=proofs/proof_trees.cmo proofs/logic.cmo \ proofs/refiner.cmo proofs/evar_refiner.cmo proofs/tacmach.cmo \ proofs/macros.cmo proofs/tacinterp.cmo proofs/clenv.cmo \ - proofs/pfedit.cmo + proofs/pfedit.cmo proofs/pattern.cmo TACTICS=tactics/dn.cmo tactics/termdn.cmo tactics/btermdn.cmo \ - tactics/nbtermdn.cmo tactics/stock.cmo tactics/pattern.cmo \ + tactics/nbtermdn.cmo tactics/stock.cmo tactics/hipattern.cmo \ tactics/wcclausenv.cmo tactics/tacticals.cmo tactics/tactics.cmo \ tactics/tacentries.cmo tactics/hiddentac.cmo tactics/elim.cmo diff --git a/dev/changements.txt b/dev/changements.txt index 6293de2960..ca07f799c9 100644 --- a/dev/changements.txt +++ b/dev/changements.txt @@ -87,10 +87,20 @@ Changements dans les fonctions : rawconstr_of_com -> interp_rawconstr type_of_com -> typed_type_of_com + Termast + bdize -> ast_of_constr + Tacmach pf_constr_of_com_sort -> pf_interp_type pf_constr_of_com -> pf_interp_constr + Pattern + somatch -> is_matching + dest_somatch -> matches + + Tacticals + matches -> gl_is_matching + dest_match -> gl_matches Changements dans les inductifs ------------------------------ |
