Skip to content

Commit

Permalink
pattern_matches: add to bossLib
Browse files Browse the repository at this point in the history
  • Loading branch information
thtuerk committed Dec 25, 2015
1 parent 910f1a9 commit b67a219
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions src/boss/bossLib.sml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ structure bossLib :> bossLib =
struct

open HolKernel Parse boolLib pairLib simpLib metisLib pred_setLib
boolSimps quantHeuristicsLib
boolSimps quantHeuristicsLib patternMatchesLib

(* This makes the dependency on listTheory and optionTheory explicit.
Without it, the theories can change, and bossLib won't get recompiled.
Expand Down Expand Up @@ -102,9 +102,9 @@ in
val QI_ss = quantHeuristicsLib.QUANT_INST_ss [std_qp]
val pure_ss = pureSimps.pure_ss
val bool_ss = boolSimps.bool_ss
val std_ss = numLib.std_ss
val arith_ss = numLib.arith_ss
val old_arith_ss = std_ss ++ numSimps.old_ARITH_ss
val std_ss = numLib.std_ss ++ PMATCH_SIMP_ss
val arith_ss = numLib.arith_ss ++ PMATCH_SIMP_ss
val old_arith_ss = std_ss ++ numSimps.old_ARITH_ss ++ PMATCH_SIMP_ss
val ARITH_ss = numSimps.ARITH_ss
val old_ARITH_ss = numSimps.old_ARITH_ss
val list_ss = arith_ss ++ listSimps.LIST_ss
Expand Down
2 changes: 1 addition & 1 deletion src/pattern_matches/patternMatchesLib.sml
Original file line number Diff line number Diff line change
Expand Up @@ -1490,7 +1490,7 @@ val PMATCH_SIMP_CONV = PMATCH_SIMP_CONV_GEN [];
fun PMATCH_SIMP_GEN_ss ssl =
make_gen_conv_ss PMATCH_SIMP_CONV_GENCALL "PMATCH_SIMP_REDUCER" ssl

val PMATCH_SIMP_ss = PMATCH_SIMP_GEN_ss []
val PMATCH_SIMP_ss = name_ss "patternMatchesSimp" (PMATCH_SIMP_GEN_ss [])


(***********************************************)
Expand Down

0 comments on commit b67a219

Please sign in to comment.