Datasets:
Tasks:
Text Generation
Modalities:
Text
Sub-tasks:
language-modeling
Languages:
English
Size:
100K - 1M
License:
File size: 478 Bytes
4365a98 |
1 2 3 4 5 6 7 8 9 10 |
(* ========================================================================= *)
(* Trivial restriction of complex Groebner bases to reals. *)
(* ========================================================================= *)
let GROBNER_REAL_ARITH =
let trans_conv = GEN_REWRITE_CONV TOP_SWEEP_CONV
[GSYM CX_INJ; CX_POW; CX_MUL; CX_ADD; CX_NEG; CX_SUB] in
fun tm -> let th = trans_conv tm in
EQ_MP (SYM th) (COMPLEX_ARITH(rand(concl th)));;
|