src/HOL/Import/HOL/divides.imp
author wenzelm
Wed, 08 Oct 2008 19:20:29 +0200
changeset 28529 7ff939586e83
parent 27651 16a26996c30e
child 33657 a4179bf442d1
permissions -rw-r--r--
setmp_noncritical makes it work with future scheduler;

import

import_segment "hol4"

const_maps
  "divides" > Divides.times_class.dvd :: "nat => nat => bool"

thm_maps
  "divides_def" > "HOL4Compat.divides_def"
  "ONE_DIVIDES_ALL" > "HOL4Base.divides.ONE_DIVIDES_ALL"
  "NOT_LT_DIV" > "NatSimprocs.nat_dvd_not_less"
  "DIVIDES_TRANS" > "Ring_and_Field.dvd_trans"
  "DIVIDES_SUB" > "Ring_and_Field.dvd_diff"
  "DIVIDES_REFL" > "Ring_and_Field.dvd_refl"
  "DIVIDES_MULT_LEFT" > "HOL4Base.divides.DIVIDES_MULT_LEFT"
  "DIVIDES_MULT" > "Divides.dvd_mult2"
  "DIVIDES_LE" > "Divides.dvd_imp_le"
  "DIVIDES_FACT" > "HOL4Base.divides.DIVIDES_FACT"
  "DIVIDES_ANTISYM" > "Divides.dvd_anti_sym"
  "DIVIDES_ADD_2" > "HOL4Base.divides.DIVIDES_ADD_2"
  "DIVIDES_ADD_1" > "Ring_and_Field.dvd_add"
  "ALL_DIVIDES_0" > "Divides.dvd_0_right"

end