src/HOL/Library/Sum_of_Squares/sum_of_squares.ML
author paulson <lp15@cam.ac.uk>
Sun, 20 Apr 2014 00:25:05 +0100
changeset 56625 54505623a8ef
parent 56536 aefb4a8da31f
child 57889 049e13f616d4
permissions -rw-r--r--
sos accepts False, returns apply command
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
41474
60d091240485 renamed Sum_Of_Squares to Sum_of_Squares;
wenzelm
parents: 40721
diff changeset
     1
(*  Title:      HOL/Library/Sum_of_Squares/sum_of_squares.ML
32949
aa6c470a962a eliminated slightly odd get/set operations in favour of Unsynchronized.ref;
wenzelm
parents: 32839
diff changeset
     2
    Author:     Amine Chaieb, University of Cambridge
aa6c470a962a eliminated slightly odd get/set operations in favour of Unsynchronized.ref;
wenzelm
parents: 32839
diff changeset
     3
    Author:     Philipp Meyer, TU Muenchen
32268
d50f0cb67578 Functionality for sum of squares to call a remote csdp prover
Philipp Meyer
parents: 32150
diff changeset
     4
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
     5
A tactic for proving nonlinear inequalities.
32268
d50f0cb67578 Functionality for sum of squares to call a remote csdp prover
Philipp Meyer
parents: 32150
diff changeset
     6
*)
d50f0cb67578 Functionality for sum of squares to call a remote csdp prover
Philipp Meyer
parents: 32150
diff changeset
     7
32949
aa6c470a962a eliminated slightly odd get/set operations in favour of Unsynchronized.ref;
wenzelm
parents: 32839
diff changeset
     8
signature SUM_OF_SQUARES =
32268
d50f0cb67578 Functionality for sum of squares to call a remote csdp prover
Philipp Meyer
parents: 32150
diff changeset
     9
sig
32949
aa6c470a962a eliminated slightly odd get/set operations in favour of Unsynchronized.ref;
wenzelm
parents: 32839
diff changeset
    10
  datatype proof_method = Certificate of RealArith.pss_tree | Prover of string -> string
aa6c470a962a eliminated slightly odd get/set operations in favour of Unsynchronized.ref;
wenzelm
parents: 32839
diff changeset
    11
  val sos_tac: (RealArith.pss_tree -> unit) -> proof_method -> Proof.context -> int -> tactic
38805
b09d8603f865 Sum_Of_Squares: proper configuration options;
wenzelm
parents: 38795
diff changeset
    12
  val trace: bool Config.T
32332
bc5cec7b2be6 misc changes to SOS by Philipp Meyer:
wenzelm
parents: 32268
diff changeset
    13
  exception Failure of string;
32268
d50f0cb67578 Functionality for sum of squares to call a remote csdp prover
Philipp Meyer
parents: 32150
diff changeset
    14
end
d50f0cb67578 Functionality for sum of squares to call a remote csdp prover
Philipp Meyer
parents: 32150
diff changeset
    15
41474
60d091240485 renamed Sum_Of_Squares to Sum_of_Squares;
wenzelm
parents: 40721
diff changeset
    16
structure Sum_of_Squares: SUM_OF_SQUARES =
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    17
struct
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    18
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    19
val rat_0 = Rat.zero;
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    20
val rat_1 = Rat.one;
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    21
val rat_2 = Rat.two;
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    22
val rat_10 = Rat.rat_of_int 10;
33029
2fefe039edf1 uniform use of Integer.min/max;
wenzelm
parents: 33002
diff changeset
    23
val max = Integer.max;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    24
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    25
val denominator_rat = Rat.quotient_of_rat #> snd #> Rat.rat_of_int;
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    26
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
    27
fun int_of_rat a =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    28
  (case Rat.quotient_of_rat a of
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    29
    (i, 1) => i
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    30
  | _ => error "int_of_rat: not an int");
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    31
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    32
fun lcm_rat x y =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    33
  Rat.rat_of_int (Integer.lcm (int_of_rat x) (int_of_rat y));
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    34
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
    35
fun rat_pow r i =
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
    36
 let fun pow r i =
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
    37
   if i = 0 then rat_1 else
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    38
   let val d = pow r (i div 2)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    39
   in d */ d */ (if i mod 2 = 0 then rat_1 else r)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    40
   end
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    41
 in if i < 0 then pow (Rat.inv r) (~ i) else pow r i end;
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    42
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
    43
fun round_rat r =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    44
  let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    45
    val (a,b) = Rat.quotient_of_rat (Rat.abs r)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    46
    val d = a div b
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    47
    val s = if r </ rat_0 then (Rat.neg o Rat.rat_of_int) else Rat.rat_of_int
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    48
    val x2 = 2 * (a - (b * d))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    49
  in s (if x2 >= b then d + 1 else d) end
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    50
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    51
val abs_rat = Rat.abs;
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    52
val pow2 = rat_pow rat_2;
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    53
val pow10 = rat_pow rat_10;
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    54
42616
92715b528e78 added Attrib.setup_config_XXX conveniences, with implicit setup of the background theory;
wenzelm
parents: 41490
diff changeset
    55
val trace = Attrib.setup_config_bool @{binding sos_trace} (K false);
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    56
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    57
exception Sanity;
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    58
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    59
exception Unsolvable;
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    60
32332
bc5cec7b2be6 misc changes to SOS by Philipp Meyer:
wenzelm
parents: 32268
diff changeset
    61
exception Failure of string;
bc5cec7b2be6 misc changes to SOS by Philipp Meyer:
wenzelm
parents: 32268
diff changeset
    62
32645
1cc5b24f5a01 sos method generates and uses proof certificates
Philipp Meyer
parents: 32332
diff changeset
    63
datatype proof_method =
1cc5b24f5a01 sos method generates and uses proof certificates
Philipp Meyer
parents: 32332
diff changeset
    64
    Certificate of RealArith.pss_tree
1cc5b24f5a01 sos method generates and uses proof certificates
Philipp Meyer
parents: 32332
diff changeset
    65
  | Prover of (string -> string)
1cc5b24f5a01 sos method generates and uses proof certificates
Philipp Meyer
parents: 32332
diff changeset
    66
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    67
(* Turn a rational into a decimal string with d sig digits.                  *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    68
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    69
local
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    70
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    71
fun normalize y =
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    72
  if abs_rat y </ (rat_1 // rat_10) then normalize (rat_10 */ y) - 1
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    73
  else if abs_rat y >=/ rat_1 then normalize (y // rat_10) + 1
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
    74
  else 0
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    75
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    76
in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    77
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    78
fun decimalize d x =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    79
  if x =/ rat_0 then "0.0"
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    80
  else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    81
    let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    82
      val y = Rat.abs x
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    83
      val e = normalize y
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    84
      val z = pow10(~ e) */ y +/ rat_1
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    85
      val k = int_of_rat (round_rat(pow10 d */ z))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    86
    in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    87
      (if x </ rat_0 then "-0." else "0.") ^
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    88
      implode (tl (raw_explode(string_of_int k))) ^
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    89
      (if e = 0 then "" else "e" ^ string_of_int e)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    90
    end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    91
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    92
end;
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    93
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    94
(* Iterations over numbers, and lists indexed by numbers.                    *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    95
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    96
fun itern k l f a =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    97
  (case l of
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
    98
    [] => a
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
    99
  | h::t => itern (k + 1) t f (f h k a));
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   100
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   101
fun iter (m,n) f a =
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   102
  if n < m then a
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   103
  else iter (m + 1, n) f (f m a);
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   104
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   105
(* The main types.                                                           *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   106
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   107
type vector = int * Rat.rat FuncUtil.Intfunc.table;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   108
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   109
type matrix = (int * int) * Rat.rat FuncUtil.Intpairfunc.table;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   110
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   111
fun iszero (_, r) = r =/ rat_0;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   112
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   113
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   114
(* Vectors. Conventionally indexed 1..n.                                     *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   115
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   116
fun vector_0 n = (n, FuncUtil.Intfunc.empty): vector;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   117
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   118
fun dim (v: vector) = fst v;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   119
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   120
fun vector_cmul c (v: vector) =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   121
  let val n = dim v in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   122
    if c =/ rat_0 then vector_0 n
39027
e4262f9e6a4e Table.map replaces Table.map'
haftmann
parents: 38805
diff changeset
   123
    else (n,FuncUtil.Intfunc.map (fn _ => fn x => c */ x) (snd v))
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   124
  end;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   125
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   126
fun vector_of_list l =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   127
  let val n = length l in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   128
    (n, fold_rev2 (curry FuncUtil.Intfunc.update) (1 upto n) l FuncUtil.Intfunc.empty): vector
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   129
  end;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   130
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   131
(* Matrices; again rows and columns indexed from 1.                          *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   132
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   133
fun dimensions (m: matrix) = fst m;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   134
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   135
fun row k (m: matrix) : vector =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   136
  let val (_, j) = dimensions m in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   137
    (j,
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   138
      FuncUtil.Intpairfunc.fold (fn ((i, j), c) => fn a =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   139
        if i = k then FuncUtil.Intfunc.update (j, c) a else a) (snd m) FuncUtil.Intfunc.empty)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   140
  end;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   141
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   142
(* Monomials.                                                                *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   143
32828
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   144
fun monomial_eval assig m =
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   145
  FuncUtil.Ctermfunc.fold (fn (x, k) => fn a => a */ rat_pow (FuncUtil.Ctermfunc.apply assig x) k)
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   146
    m rat_1;
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   147
32829
671eb46eb0a3 tuned FuncFun and FuncUtil structure in positivstellensatz.ML
Philipp Meyer
parents: 32828
diff changeset
   148
val monomial_1 = FuncUtil.Ctermfunc.empty;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   149
32828
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   150
fun monomial_var x = FuncUtil.Ctermfunc.onefunc (x, 1);
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   151
32828
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   152
val monomial_mul =
33002
f3f02f36a3e2 uniform use of Integer.add/mult/sum/prod;
wenzelm
parents: 32949
diff changeset
   153
  FuncUtil.Ctermfunc.combine Integer.add (K false);
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   154
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   155
fun monomial_multidegree m =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   156
  FuncUtil.Ctermfunc.fold (fn (_, k) => fn a => k + a) m 0;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   157
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   158
fun monomial_variables m = FuncUtil.Ctermfunc.dom m;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   159
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   160
(* Polynomials.                                                              *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   161
32828
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   162
fun eval assig p =
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   163
  FuncUtil.Monomialfunc.fold (fn (m, c) => fn a => a +/ c */ monomial_eval assig m) p rat_0;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   164
32829
671eb46eb0a3 tuned FuncFun and FuncUtil structure in positivstellensatz.ML
Philipp Meyer
parents: 32828
diff changeset
   165
val poly_0 = FuncUtil.Monomialfunc.empty;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   166
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   167
fun poly_isconst p =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   168
  FuncUtil.Monomialfunc.fold (fn (m, _) => fn a => FuncUtil.Ctermfunc.is_empty m andalso a)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   169
    p true;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   170
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   171
fun poly_var x = FuncUtil.Monomialfunc.onefunc (monomial_var x, rat_1);
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   172
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   173
fun poly_const c =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   174
  if c =/ rat_0 then poly_0 else FuncUtil.Monomialfunc.onefunc (monomial_1, c);
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   175
32828
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   176
fun poly_cmul c p =
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   177
  if c =/ rat_0 then poly_0
39027
e4262f9e6a4e Table.map replaces Table.map'
haftmann
parents: 38805
diff changeset
   178
  else FuncUtil.Monomialfunc.map (fn _ => fn x => c */ x) p;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   179
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   180
fun poly_neg p = FuncUtil.Monomialfunc.map (K Rat.neg) p;
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   181
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   182
32828
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   183
fun poly_add p1 p2 =
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   184
  FuncUtil.Monomialfunc.combine (curry op +/) (fn x => x =/ rat_0) p1 p2;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   185
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   186
fun poly_sub p1 p2 = poly_add p1 (poly_neg p2);
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   187
32828
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   188
fun poly_cmmul (c,m) p =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   189
  if c =/ rat_0 then poly_0
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   190
  else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   191
    if FuncUtil.Ctermfunc.is_empty m
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   192
    then FuncUtil.Monomialfunc.map (fn _ => fn d => c */ d) p
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   193
    else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   194
      FuncUtil.Monomialfunc.fold (fn (m', d) => fn a =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   195
          (FuncUtil.Monomialfunc.update (monomial_mul m m', c */ d) a)) p poly_0;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   196
32828
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   197
fun poly_mul p1 p2 =
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   198
  FuncUtil.Monomialfunc.fold (fn (m, c) => fn a => poly_add (poly_cmmul (c,m) p2) a) p1 poly_0;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   199
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   200
fun poly_square p = poly_mul p p;
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   201
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   202
fun poly_pow p k =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   203
  if k = 0 then poly_const rat_1
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   204
  else if k = 1 then p
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   205
  else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   206
    let val q = poly_square(poly_pow p (k div 2))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   207
    in if k mod 2 = 1 then poly_mul p q else q end;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   208
32828
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   209
fun multidegree p =
44453
082edd97ffe1 comment out dead code to avoid compiler warnings
huffman
parents: 42616
diff changeset
   210
  FuncUtil.Monomialfunc.fold (fn (m, _) => fn a => max (monomial_multidegree m) a) p 0;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   211
32828
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   212
fun poly_variables p =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   213
  sort FuncUtil.cterm_ord
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   214
    (FuncUtil.Monomialfunc.fold_rev
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   215
      (fn (m, _) => union (is_equal o FuncUtil.cterm_ord) (monomial_variables m)) p []);
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   216
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   217
(* Conversion from HOL term.                                                 *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   218
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   219
local
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   220
  val neg_tm = @{cterm "uminus :: real => _"}
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   221
  val add_tm = @{cterm "op + :: real => _"}
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   222
  val sub_tm = @{cterm "op - :: real => _"}
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   223
  val mul_tm = @{cterm "op * :: real => _"}
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   224
  val inv_tm = @{cterm "inverse :: real => _"}
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   225
  val div_tm = @{cterm "op / :: real => _"}
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   226
  val pow_tm = @{cterm "op ^ :: real => _"}
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   227
  val zero_tm = @{cterm "0:: real"}
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   228
  val is_numeral = can (HOLogic.dest_number o term_of)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   229
  fun poly_of_term tm =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   230
    if tm aconvc zero_tm then poly_0
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   231
    else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   232
      if RealArith.is_ratconst tm
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   233
      then poly_const(RealArith.dest_ratconst tm)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   234
      else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   235
       (let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   236
          val (lop, r) = Thm.dest_comb tm
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   237
        in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   238
          if lop aconvc neg_tm then poly_neg(poly_of_term r)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   239
          else if lop aconvc inv_tm then
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   240
            let val p = poly_of_term r in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   241
              if poly_isconst p
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   242
              then poly_const(Rat.inv (eval FuncUtil.Ctermfunc.empty p))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   243
              else error "poly_of_term: inverse of non-constant polyomial"
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   244
            end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   245
          else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   246
           (let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   247
              val (opr,l) = Thm.dest_comb lop
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   248
            in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   249
              if opr aconvc pow_tm andalso is_numeral r
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   250
              then poly_pow (poly_of_term l) ((snd o HOLogic.dest_number o term_of) r)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   251
              else if opr aconvc add_tm
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   252
              then poly_add (poly_of_term l) (poly_of_term r)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   253
              else if opr aconvc sub_tm
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   254
              then poly_sub (poly_of_term l) (poly_of_term r)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   255
              else if opr aconvc mul_tm
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   256
              then poly_mul (poly_of_term l) (poly_of_term r)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   257
              else if opr aconvc div_tm
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   258
              then
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   259
                let
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   260
                  val p = poly_of_term l
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   261
                  val q = poly_of_term r
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   262
                in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   263
                  if poly_isconst q
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   264
                  then poly_cmul (Rat.inv (eval FuncUtil.Ctermfunc.empty q)) p
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   265
                  else error "poly_of_term: division by non-constant polynomial"
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   266
                end
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   267
              else poly_var tm
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   268
            end handle CTERM ("dest_comb",_) => poly_var tm)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   269
        end handle CTERM ("dest_comb",_) => poly_var tm)
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   270
in
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   271
  val poly_of_term = fn tm =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   272
    if type_of (term_of tm) = @{typ real}
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   273
    then poly_of_term tm
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   274
    else error "poly_of_term: term does not have real type"
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   275
end;
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   276
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   277
(* String of vector (just a list of space-separated numbers).                *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   278
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   279
fun sdpa_of_vector (v: vector) =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   280
  let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   281
    val n = dim v
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   282
    val strs =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   283
      map (decimalize 20 o (fn i => FuncUtil.Intfunc.tryapplyd (snd v) i rat_0)) (1 upto n)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   284
  in space_implode " " strs ^ "\n" end;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   285
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   286
fun triple_int_ord ((a, b, c), (a', b', c')) =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   287
  prod_ord int_ord (prod_ord int_ord int_ord) ((a, (b, c)), (a', (b', c')));
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   288
structure Inttriplefunc = FuncFun(type key = int * int * int val ord = triple_int_ord);
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   289
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   290
fun index_char str chr pos =
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   291
  if pos >= String.size str then ~1
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   292
  else if String.sub(str,pos) = chr then pos
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   293
  else index_char str chr (pos + 1);
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   294
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   295
fun rat_of_quotient (a,b) =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   296
  if b = 0 then rat_0 else Rat.rat_of_quotient (a, b);
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   297
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   298
fun rat_of_string s =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   299
  let val n = index_char s #"/" 0 in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   300
    if n = ~1 then s |> Int.fromString |> the |> Rat.rat_of_int
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   301
    else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   302
      let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   303
        val SOME numer = Int.fromString(String.substring(s,0,n))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   304
        val SOME den = Int.fromString (String.substring(s,n+1,String.size s - n - 1))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   305
      in rat_of_quotient(numer, den) end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   306
  end;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   307
53975
22ee3fb9d596 backout c6297fa1031a -- strange parsers are required to make this work;
wenzelm
parents: 53972
diff changeset
   308
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   309
fun isnum x = member (op =) ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9"] x;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   310
53975
22ee3fb9d596 backout c6297fa1031a -- strange parsers are required to make this work;
wenzelm
parents: 53972
diff changeset
   311
(* More parser basics. *)
22ee3fb9d596 backout c6297fa1031a -- strange parsers are required to make this work;
wenzelm
parents: 53972
diff changeset
   312
(* FIXME improper use of parser combinators ahead *)
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   313
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   314
val numeral = Scan.one isnum
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   315
val decimalint = Scan.repeat1 numeral >> (rat_of_string o implode)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   316
val decimalfrac = Scan.repeat1 numeral
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   317
  >> (fn s => rat_of_string(implode s) // pow10 (length s))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   318
val decimalsig =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   319
  decimalint -- Scan.option (Scan.$$ "." |-- decimalfrac)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   320
  >> (fn (h,NONE) => h | (h,SOME x) => h +/ x)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   321
fun signed prs =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   322
     $$ "-" |-- prs >> Rat.neg
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   323
  || $$ "+" |-- prs
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   324
  || prs;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   325
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   326
fun emptyin def xs = if null xs then (def, xs) else Scan.fail xs
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   327
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   328
val exponent = ($$ "e" || $$ "E") |-- signed decimalint;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   329
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   330
val decimal = signed decimalsig -- (emptyin rat_0|| exponent)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   331
  >> (fn (h, x) => h */ pow10 (int_of_rat x));
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   332
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   333
fun mkparser p s =
53975
22ee3fb9d596 backout c6297fa1031a -- strange parsers are required to make this work;
wenzelm
parents: 53972
diff changeset
   334
  let val (x,rst) = p (raw_explode s)
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   335
  in if null rst then x else error "mkparser: unparsed input" end;
53975
22ee3fb9d596 backout c6297fa1031a -- strange parsers are required to make this work;
wenzelm
parents: 53972
diff changeset
   336
32332
bc5cec7b2be6 misc changes to SOS by Philipp Meyer:
wenzelm
parents: 32268
diff changeset
   337
(* Parse back csdp output.                                                      *)
53975
22ee3fb9d596 backout c6297fa1031a -- strange parsers are required to make this work;
wenzelm
parents: 53972
diff changeset
   338
(* FIXME improper use of parser combinators ahead *)
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   339
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   340
fun ignore _ = ((),[])
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   341
fun csdpoutput inp =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   342
  ((decimal -- Scan.repeat (Scan.$$ " " |-- Scan.option decimal) >>
33067
a70d5baa53ee use plain Scan.repeat (NB: Scan.bulk is for cascading sources -- mostly interna use);
wenzelm
parents: 33042
diff changeset
   343
    (fn (h,to) => map_filter I ((SOME h)::to))) --| ignore >> vector_of_list) inp
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   344
val parse_csdpoutput = mkparser csdpoutput
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   345
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   346
(* Try some apparently sensible scaling first. Note that this is purely to   *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   347
(* get a cleaner translation to floating-point, and doesn't affect any of    *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   348
(* the results, in principle. In practice it seems a lot better when there   *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   349
(* are extreme numbers in the original problem.                              *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   350
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   351
(* Version for (int*int*int) keys *)
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   352
local
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   353
  fun max_rat x y = if x </ y then y else x
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   354
  fun common_denominator fld amat acc =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   355
    fld (fn (_,c) => fn a => lcm_rat (denominator_rat c) a) amat acc
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   356
  fun maximal_element fld amat acc =
44453
082edd97ffe1 comment out dead code to avoid compiler warnings
huffman
parents: 42616
diff changeset
   357
    fld (fn (_,c) => fn maxa => max_rat maxa (abs_rat c)) amat acc
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   358
  fun float_of_rat x =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   359
    let val (a,b) = Rat.quotient_of_rat x
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   360
    in Real.fromInt a / Real.fromInt b end;
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   361
  fun int_of_float x = (trunc x handle Overflow => 0 | Domain => 0)
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   362
in
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   363
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   364
fun tri_scale_then solver (obj:vector) mats =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   365
  let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   366
    val cd1 = fold_rev (common_denominator Inttriplefunc.fold) mats (rat_1)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   367
    val cd2 = common_denominator FuncUtil.Intfunc.fold (snd obj)  (rat_1)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   368
    val mats' = map (Inttriplefunc.map (fn _ => fn x => cd1 */ x)) mats
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   369
    val obj' = vector_cmul cd2 obj
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   370
    val max1 = fold_rev (maximal_element Inttriplefunc.fold) mats' (rat_0)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   371
    val max2 = maximal_element FuncUtil.Intfunc.fold (snd obj') (rat_0)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   372
    val scal1 = pow2 (20 - int_of_float(Math.ln (float_of_rat max1) / Math.ln 2.0))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   373
    val scal2 = pow2 (20 - int_of_float(Math.ln (float_of_rat max2) / Math.ln 2.0))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   374
    val mats'' = map (Inttriplefunc.map (fn _ => fn x => x */ scal1)) mats'
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   375
    val obj'' = vector_cmul scal2 obj'
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   376
  in solver obj'' mats'' end
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   377
end;
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   378
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   379
(* Round a vector to "nice" rationals.                                       *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   380
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   381
fun nice_rational n x = round_rat (n */ x) // n;
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   382
fun nice_vector n ((d,v) : vector) =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   383
  (d, FuncUtil.Intfunc.fold (fn (i,c) => fn a =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   384
      let val y = nice_rational n c in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   385
        if c =/ rat_0 then a
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   386
        else FuncUtil.Intfunc.update (i,y) a
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   387
      end) v FuncUtil.Intfunc.empty): vector
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   388
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   389
fun dest_ord f x = is_equal (f x);
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   390
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   391
(* Stuff for "equations" ((int*int*int)->num functions).                         *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   392
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   393
fun tri_equation_cmul c eq =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   394
  if c =/ rat_0 then Inttriplefunc.empty
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   395
  else Inttriplefunc.map (fn _ => fn d => c */ d) eq;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   396
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   397
fun tri_equation_add eq1 eq2 =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   398
  Inttriplefunc.combine (curry op +/) (fn x => x =/ rat_0) eq1 eq2;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   399
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   400
fun tri_equation_eval assig eq =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   401
  let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   402
    fun value v = Inttriplefunc.apply assig v
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   403
  in Inttriplefunc.fold (fn (v, c) => fn a => a +/ value v */ c) eq rat_0 end;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   404
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   405
(* Eliminate all variables, in an essentially arbitrary order.               *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   406
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   407
fun tri_eliminate_all_equations one =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   408
  let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   409
    fun choose_variable eq =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   410
      let val (v,_) = Inttriplefunc.choose eq
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   411
      in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   412
        if is_equal (triple_int_ord(v,one)) then
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   413
          let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   414
            val eq' = Inttriplefunc.delete_safe v eq
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   415
          in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   416
            if Inttriplefunc.is_empty eq' then error "choose_variable"
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   417
            else fst (Inttriplefunc.choose eq')
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   418
          end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   419
        else v
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   420
      end
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   421
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   422
    fun eliminate dun eqs =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   423
      (case eqs of
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   424
        [] => dun
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   425
      | eq :: oeqs =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   426
          if Inttriplefunc.is_empty eq then eliminate dun oeqs
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   427
          else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   428
            let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   429
              val v = choose_variable eq
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   430
              val a = Inttriplefunc.apply eq v
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   431
              val eq' =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   432
                tri_equation_cmul ((Rat.rat_of_int ~1) // a) (Inttriplefunc.delete_safe v eq)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   433
              fun elim e =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   434
                let val b = Inttriplefunc.tryapplyd e v rat_0 in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   435
                  if b =/ rat_0 then e
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   436
                  else tri_equation_add e (tri_equation_cmul (Rat.neg b // a) eq)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   437
                end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   438
            in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   439
              eliminate (Inttriplefunc.update(v, eq') (Inttriplefunc.map (K elim) dun))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   440
                (map elim oeqs)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   441
            end)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   442
  in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   443
    fn eqs =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   444
      let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   445
        val assig = eliminate Inttriplefunc.empty eqs
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   446
        val vs = Inttriplefunc.fold (fn (_, f) => fn a =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   447
          remove (dest_ord triple_int_ord) one (Inttriplefunc.dom f) @ a) assig []
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   448
      in (distinct (dest_ord triple_int_ord) vs,assig) end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   449
  end;
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   450
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   451
(* Multiply equation-parametrized poly by regular poly and add accumulator.  *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   452
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   453
fun tri_epoly_pmul p q acc =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   454
  FuncUtil.Monomialfunc.fold (fn (m1, c) => fn a =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   455
    FuncUtil.Monomialfunc.fold (fn (m2, e) => fn b =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   456
      let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   457
        val m =  monomial_mul m1 m2
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   458
        val es = FuncUtil.Monomialfunc.tryapplyd b m Inttriplefunc.empty
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   459
      in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   460
        FuncUtil.Monomialfunc.update (m,tri_equation_add (tri_equation_cmul c e) es) b
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   461
      end) q a) p acc;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   462
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   463
(* Hence produce the "relevant" monomials: those whose squares lie in the    *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   464
(* Newton polytope of the monomials in the input. (This is enough according  *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   465
(* to Reznik: "Extremal PSD forms with few terms", Duke Math. Journal,       *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   466
(* vol 45, pp. 363--374, 1978.                                               *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   467
(*                                                                           *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   468
(* These are ordered in sort of decreasing degree. In particular the         *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   469
(* constant monomial is last; this gives an order in diagonalization of the  *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   470
(* quadratic form that will tend to display constants.                       *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   471
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   472
(* Diagonalize (Cholesky/LDU) the matrix corresponding to a quadratic form.  *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   473
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   474
local
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   475
  fun diagonalize n i m =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   476
    if FuncUtil.Intpairfunc.is_empty (snd m) then []
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   477
    else
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   478
      let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   479
        val a11 = FuncUtil.Intpairfunc.tryapplyd (snd m) (i,i) rat_0
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   480
      in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   481
        if a11 </ rat_0 then raise Failure "diagonalize: not PSD"
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   482
        else if a11 =/ rat_0 then
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   483
          if FuncUtil.Intfunc.is_empty (snd (row i m))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   484
          then diagonalize n (i + 1) m
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   485
          else raise Failure "diagonalize: not PSD ___ "
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   486
        else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   487
          let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   488
            val v = row i m
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   489
            val v' =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   490
              (fst v, FuncUtil.Intfunc.fold (fn (i, c) => fn a =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   491
                let val y = c // a11
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   492
                in if y = rat_0 then a else FuncUtil.Intfunc.update (i,y) a
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   493
                end) (snd v) FuncUtil.Intfunc.empty)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   494
            fun upt0 x y a =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   495
              if y = rat_0 then a
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   496
              else FuncUtil.Intpairfunc.update (x,y) a
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   497
            val m' =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   498
              ((n, n),
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   499
                iter (i + 1, n) (fn j =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   500
                  iter (i + 1, n) (fn k =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   501
                    (upt0 (j, k)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   502
                      (FuncUtil.Intpairfunc.tryapplyd (snd m) (j, k) rat_0 -/
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   503
                        FuncUtil.Intfunc.tryapplyd (snd v) j rat_0 */
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   504
                        FuncUtil.Intfunc.tryapplyd (snd v') k rat_0))))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   505
                    FuncUtil.Intpairfunc.empty)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   506
          in (a11, v') :: diagonalize n (i + 1) m' end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   507
      end
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   508
in
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   509
  fun diag m =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   510
    let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   511
      val nn = dimensions m
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   512
      val n = fst nn
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   513
    in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   514
      if snd nn <> n then error "diagonalize: non-square matrix"
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   515
      else diagonalize n 1 m
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   516
    end
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   517
end;
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   518
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   519
(* Enumeration of monomials with given multidegree bound.                    *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   520
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   521
fun enumerate_monomials d vars =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   522
  if d < 0 then []
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   523
  else if d = 0 then [FuncUtil.Ctermfunc.empty]
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   524
  else if null vars then [monomial_1]
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   525
  else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   526
    let val alts =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   527
      map_range (fn k =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   528
        let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   529
          val oths = enumerate_monomials (d - k) (tl vars)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   530
        in map (fn ks => if k = 0 then ks else FuncUtil.Ctermfunc.update (hd vars, k) ks) oths end)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   531
        (d + 1)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   532
  in flat alts end;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   533
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   534
(* Enumerate products of distinct input polys with degree <= d.              *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   535
(* We ignore any constant input polynomials.                                 *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   536
(* Give the output polynomial and a record of how it was derived.            *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   537
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   538
fun enumerate_products d pols =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   539
  if d = 0 then [(poly_const rat_1,RealArith.Rational_lt rat_1)]
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   540
  else if d < 0 then []
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   541
  else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   542
    (case pols of
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   543
      [] => [(poly_const rat_1, RealArith.Rational_lt rat_1)]
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   544
    | (p, b) :: ps =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   545
        let val e = multidegree p in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   546
          if e = 0 then enumerate_products d ps
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   547
          else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   548
            enumerate_products d ps @
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   549
            map (fn (q, c) => (poly_mul p q, RealArith.Product (b, c)))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   550
              (enumerate_products (d - e) ps)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   551
        end)
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   552
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   553
(* Convert regular polynomial. Note that we treat (0,0,0) as -1.             *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   554
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   555
fun epoly_of_poly p =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   556
  FuncUtil.Monomialfunc.fold (fn (m, c) => fn a =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   557
      FuncUtil.Monomialfunc.update (m, Inttriplefunc.onefunc ((0, 0, 0), Rat.neg c)) a)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   558
    p FuncUtil.Monomialfunc.empty;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   559
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   560
(* String for block diagonal matrix numbered k.                              *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   561
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   562
fun sdpa_of_blockdiagonal k m =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   563
  let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   564
    val pfx = string_of_int k ^" "
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   565
    val ents =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   566
      Inttriplefunc.fold
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   567
        (fn ((b, i, j), c) => fn a => if i > j then a else ((b, i, j), c) :: a)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   568
        m []
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   569
    val entss = sort (triple_int_ord o pairself fst) ents
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   570
  in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   571
    fold_rev (fn ((b,i,j),c) => fn a =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   572
      pfx ^ string_of_int b ^ " " ^ string_of_int i ^ " " ^ string_of_int j ^
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   573
      " " ^ decimalize 20 c ^ "\n" ^ a) entss ""
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   574
  end;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   575
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   576
(* SDPA for problem using block diagonal (i.e. multiple SDPs)                *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   577
32268
d50f0cb67578 Functionality for sum of squares to call a remote csdp prover
Philipp Meyer
parents: 32150
diff changeset
   578
fun sdpa_of_blockproblem nblocks blocksizes obj mats =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   579
  let val m = length mats - 1
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   580
  in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   581
    string_of_int m ^ "\n" ^
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   582
    string_of_int nblocks ^ "\n" ^
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   583
    (space_implode " " (map string_of_int blocksizes)) ^
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   584
    "\n" ^
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   585
    sdpa_of_vector obj ^
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   586
    fold_rev2 (fn k => fn m => fn a => sdpa_of_blockdiagonal (k - 1) m ^ a)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   587
      (1 upto length mats) mats ""
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   588
  end;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   589
32268
d50f0cb67578 Functionality for sum of squares to call a remote csdp prover
Philipp Meyer
parents: 32150
diff changeset
   590
(* Run prover on a problem in block diagonal form.                       *)
d50f0cb67578 Functionality for sum of squares to call a remote csdp prover
Philipp Meyer
parents: 32150
diff changeset
   591
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   592
fun run_blockproblem prover nblocks blocksizes obj mats =
32268
d50f0cb67578 Functionality for sum of squares to call a remote csdp prover
Philipp Meyer
parents: 32150
diff changeset
   593
  parse_csdpoutput (prover (sdpa_of_blockproblem nblocks blocksizes obj mats))
d50f0cb67578 Functionality for sum of squares to call a remote csdp prover
Philipp Meyer
parents: 32150
diff changeset
   594
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   595
(* 3D versions of matrix operations to consider blocks separately.           *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   596
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   597
val bmatrix_add = Inttriplefunc.combine (curry op +/) (fn x => x =/ rat_0);
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   598
fun bmatrix_cmul c bm =
32829
671eb46eb0a3 tuned FuncFun and FuncUtil structure in positivstellensatz.ML
Philipp Meyer
parents: 32828
diff changeset
   599
  if c =/ rat_0 then Inttriplefunc.empty
39027
e4262f9e6a4e Table.map replaces Table.map'
haftmann
parents: 38805
diff changeset
   600
  else Inttriplefunc.map (fn _ => fn x => c */ x) bm;
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   601
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   602
val bmatrix_neg = bmatrix_cmul (Rat.rat_of_int ~1);
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   603
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   604
(* Smash a block matrix into components.                                     *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   605
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   606
fun blocks blocksizes bm =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   607
  map (fn (bs, b0) =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   608
    let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   609
      val m =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   610
        Inttriplefunc.fold
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   611
          (fn ((b, i, j), c) => fn a =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   612
            if b = b0 then FuncUtil.Intpairfunc.update ((i, j), c) a else a)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   613
        bm FuncUtil.Intpairfunc.empty
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   614
      val _ = FuncUtil.Intpairfunc.fold (fn ((i, j), _) => fn a => max a (max i j)) m 0
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   615
    in (((bs, bs), m): matrix) end)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   616
  (blocksizes ~~ (1 upto length blocksizes));
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   617
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   618
(* FIXME : Get rid of this !!!*)
32268
d50f0cb67578 Functionality for sum of squares to call a remote csdp prover
Philipp Meyer
parents: 32150
diff changeset
   619
local
44453
082edd97ffe1 comment out dead code to avoid compiler warnings
huffman
parents: 42616
diff changeset
   620
  fun tryfind_with msg _ [] = raise Failure msg
082edd97ffe1 comment out dead code to avoid compiler warnings
huffman
parents: 42616
diff changeset
   621
    | tryfind_with _ f (x::xs) = (f x handle Failure s => tryfind_with s f xs);
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   622
in
32268
d50f0cb67578 Functionality for sum of squares to call a remote csdp prover
Philipp Meyer
parents: 32150
diff changeset
   623
  fun tryfind f = tryfind_with "tryfind" f
d50f0cb67578 Functionality for sum of squares to call a remote csdp prover
Philipp Meyer
parents: 32150
diff changeset
   624
end
d50f0cb67578 Functionality for sum of squares to call a remote csdp prover
Philipp Meyer
parents: 32150
diff changeset
   625
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   626
(* Positiv- and Nullstellensatz. Flag "linf" forces a linear representation. *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   627
38805
b09d8603f865 Sum_Of_Squares: proper configuration options;
wenzelm
parents: 38795
diff changeset
   628
fun real_positivnullstellensatz_general ctxt prover linf d eqs leqs pol =
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   629
  let
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   630
    val vars =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   631
      fold_rev (union (op aconvc) o poly_variables)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   632
        (pol :: eqs @ map fst leqs) []
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   633
    val monoid =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   634
      if linf then
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   635
        (poly_const rat_1,RealArith.Rational_lt rat_1)::
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   636
        (filter (fn (p,_) => multidegree p <= d) leqs)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   637
      else enumerate_products d leqs
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   638
    val nblocks = length monoid
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   639
    fun mk_idmultiplier k p =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   640
      let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   641
        val e = d - multidegree p
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   642
        val mons = enumerate_monomials e vars
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   643
        val nons = mons ~~ (1 upto length mons)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   644
      in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   645
        (mons,
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   646
          fold_rev (fn (m, n) =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   647
            FuncUtil.Monomialfunc.update (m, Inttriplefunc.onefunc ((~k, ~n, n), rat_1)))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   648
          nons FuncUtil.Monomialfunc.empty)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   649
      end
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   650
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   651
    fun mk_sqmultiplier k (p,_) =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   652
      let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   653
        val e = (d - multidegree p) div 2
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   654
        val mons = enumerate_monomials e vars
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   655
        val nons = mons ~~ (1 upto length mons)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   656
      in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   657
        (mons,
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   658
          fold_rev (fn (m1, n1) =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   659
            fold_rev (fn (m2, n2) => fn a =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   660
              let val m = monomial_mul m1 m2 in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   661
                if n1 > n2 then a
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   662
                else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   663
                  let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   664
                    val c = if n1 = n2 then rat_1 else rat_2
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   665
                    val e = FuncUtil.Monomialfunc.tryapplyd a m Inttriplefunc.empty
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   666
                  in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   667
                    FuncUtil.Monomialfunc.update
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   668
                      (m, tri_equation_add (Inttriplefunc.onefunc ((k, n1, n2), c)) e) a
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   669
                  end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   670
              end) nons) nons FuncUtil.Monomialfunc.empty)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   671
      end
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   672
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   673
    val (sqmonlist,sqs) = split_list (map2 mk_sqmultiplier (1 upto length monoid) monoid)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   674
    val (_(*idmonlist*),ids) =  split_list (map2 mk_idmultiplier (1 upto length eqs) eqs)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   675
    val blocksizes = map length sqmonlist
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   676
    val bigsum =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   677
      fold_rev2 (fn p => fn q => fn a => tri_epoly_pmul p q a) eqs ids
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   678
        (fold_rev2 (fn (p,_) => fn s => fn a => tri_epoly_pmul p s a) monoid sqs
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   679
          (epoly_of_poly(poly_neg pol)))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   680
    val eqns = FuncUtil.Monomialfunc.fold (fn (_, e) => fn a => e :: a) bigsum []
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   681
    val (pvs, assig) = tri_eliminate_all_equations (0, 0, 0) eqns
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   682
    val qvars = (0, 0, 0) :: pvs
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   683
    val allassig =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   684
      fold_rev (fn v => Inttriplefunc.update (v, (Inttriplefunc.onefunc (v, rat_1)))) pvs assig
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   685
    fun mk_matrix v =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   686
      Inttriplefunc.fold (fn ((b, i, j), ass) => fn m =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   687
          if b < 0 then m
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   688
          else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   689
            let val c = Inttriplefunc.tryapplyd ass v rat_0 in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   690
              if c = rat_0 then m
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   691
              else Inttriplefunc.update ((b, j, i), c) (Inttriplefunc.update ((b, i, j), c) m)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   692
            end)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   693
        allassig Inttriplefunc.empty
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   694
    val diagents =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   695
      Inttriplefunc.fold
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   696
        (fn ((b, i, j), e) => fn a => if b > 0 andalso i = j then tri_equation_add e a else a)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   697
        allassig Inttriplefunc.empty
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   698
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   699
    val mats = map mk_matrix qvars
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   700
    val obj =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   701
      (length pvs,
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   702
        itern 1 pvs (fn v => fn i =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   703
          FuncUtil.Intfunc.updatep iszero (i,Inttriplefunc.tryapplyd diagents v rat_0))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   704
          FuncUtil.Intfunc.empty)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   705
    val raw_vec =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   706
      if null pvs then vector_0 0
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   707
      else tri_scale_then (run_blockproblem prover nblocks blocksizes) obj mats
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   708
    fun int_element (_, v) i = FuncUtil.Intfunc.tryapplyd v i rat_0
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   709
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   710
    fun find_rounding d =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   711
      let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   712
        val _ =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   713
          if Config.get ctxt trace
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   714
          then writeln ("Trying rounding with limit "^Rat.string_of_rat d ^ "\n")
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   715
          else ()
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   716
        val vec = nice_vector d raw_vec
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   717
        val blockmat =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   718
          iter (1, dim vec)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   719
            (fn i => fn a => bmatrix_add (bmatrix_cmul (int_element vec i) (nth mats i)) a)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   720
            (bmatrix_neg (nth mats 0))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   721
        val allmats = blocks blocksizes blockmat
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   722
      in (vec, map diag allmats) end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   723
    val (vec, ratdias) =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   724
      if null pvs then find_rounding rat_1
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   725
      else tryfind find_rounding (map Rat.rat_of_int (1 upto 31) @ map pow2 (5 upto 66))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   726
    val newassigs =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   727
      fold_rev (fn k => Inttriplefunc.update (nth pvs (k - 1), int_element vec k))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   728
        (1 upto dim vec) (Inttriplefunc.onefunc ((0, 0, 0), Rat.rat_of_int ~1))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   729
    val finalassigs =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   730
      Inttriplefunc.fold (fn (v, e) => fn a =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   731
        Inttriplefunc.update (v, tri_equation_eval newassigs e) a) allassig newassigs
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   732
    fun poly_of_epoly p =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   733
      FuncUtil.Monomialfunc.fold (fn (v, e) => fn a =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   734
          FuncUtil.Monomialfunc.updatep iszero (v, tri_equation_eval finalassigs e) a)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   735
        p FuncUtil.Monomialfunc.empty
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   736
    fun mk_sos mons =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   737
      let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   738
        fun mk_sq (c, m) =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   739
          (c, fold_rev (fn k => fn a =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   740
              FuncUtil.Monomialfunc.updatep iszero (nth mons (k - 1), int_element m k) a)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   741
            (1 upto length mons) FuncUtil.Monomialfunc.empty)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   742
      in map mk_sq end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   743
    val sqs = map2 mk_sos sqmonlist ratdias
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   744
    val cfs = map poly_of_epoly ids
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   745
    val msq = filter (fn (_, b) => not (null b)) (map2 pair monoid sqs)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   746
    fun eval_sq sqs = fold_rev (fn (c, q) => poly_add (poly_cmul c (poly_mul q q))) sqs poly_0
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   747
    val sanity =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   748
      fold_rev (fn ((p, _), s) => poly_add (poly_mul p (eval_sq s))) msq
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   749
        (fold_rev2 (fn p => fn q => poly_add (poly_mul p q)) cfs eqs (poly_neg pol))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   750
  in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   751
    if not(FuncUtil.Monomialfunc.is_empty sanity) then raise Sanity
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   752
    else (cfs, map (fn (a, b) => (snd a, b)) msq)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   753
  end
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   754
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   755
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   756
(* Iterative deepening.                                                      *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   757
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   758
fun deepen f n =
32949
aa6c470a962a eliminated slightly odd get/set operations in favour of Unsynchronized.ref;
wenzelm
parents: 32839
diff changeset
   759
  (writeln ("Searching with depth limit " ^ string_of_int n);
aa6c470a962a eliminated slightly odd get/set operations in favour of Unsynchronized.ref;
wenzelm
parents: 32839
diff changeset
   760
    (f n handle Failure s => (writeln ("failed with message: " ^ s); deepen f (n + 1))));
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   761
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   762
32645
1cc5b24f5a01 sos method generates and uses proof certificates
Philipp Meyer
parents: 32332
diff changeset
   763
(* Map back polynomials and their composites to a positivstellensatz.        *)
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   764
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   765
fun cterm_of_sqterm (c, p) = RealArith.Product (RealArith.Rational_lt c, RealArith.Square p);
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   766
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   767
fun cterm_of_sos (pr,sqs) =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   768
  if null sqs then pr
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   769
  else RealArith.Product (pr, foldr1 RealArith.Sum (map cterm_of_sqterm sqs));
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   770
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   771
(* Interface to HOL.                                                         *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   772
local
32828
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   773
  open Conv
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   774
  val concl = Thm.dest_arg o cprop_of
35408
b48ab741683b modernized structure Term_Ord;
wenzelm
parents: 33906
diff changeset
   775
  fun simple_cterm_ord t u = Term_Ord.fast_term_ord (term_of t, term_of u) = LESS
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   776
in
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   777
(* FIXME: Replace tryfind by get_first !! *)
32645
1cc5b24f5a01 sos method generates and uses proof certificates
Philipp Meyer
parents: 32332
diff changeset
   778
fun real_nonlinear_prover proof_method ctxt =
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   779
  let
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   780
    val {add = _, mul = _, neg = _, pow = _, sub = _, main = real_poly_conv} =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   781
      Semiring_Normalizer.semiring_normalizers_ord_wrapper ctxt
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   782
        (the (Semiring_Normalizer.match ctxt @{cterm "(0::real) + 1"}))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   783
        simple_cterm_ord
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   784
    fun mainf cert_choice translator (eqs, les, lts) =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   785
      let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   786
        val eq0 = map (poly_of_term o Thm.dest_arg1 o concl) eqs
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   787
        val le0 = map (poly_of_term o Thm.dest_arg o concl) les
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   788
        val lt0 = map (poly_of_term o Thm.dest_arg o concl) lts
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   789
        val eqp0 = map_index (fn (i, t) => (t,RealArith.Axiom_eq i)) eq0
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   790
        val lep0 = map_index (fn (i, t) => (t,RealArith.Axiom_le i)) le0
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   791
        val ltp0 = map_index (fn (i, t) => (t,RealArith.Axiom_lt i)) lt0
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   792
        val (keq,eq) = List.partition (fn (p, _) => multidegree p = 0) eqp0
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   793
        val (klep,lep) = List.partition (fn (p, _) => multidegree p = 0) lep0
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   794
        val (kltp,ltp) = List.partition (fn (p, _) => multidegree p = 0) ltp0
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   795
        fun trivial_axiom (p, ax) =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   796
          (case ax of
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   797
            RealArith.Axiom_eq n =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   798
              if eval FuncUtil.Ctermfunc.empty p <>/ Rat.zero then nth eqs n
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   799
              else raise Failure "trivial_axiom: Not a trivial axiom"
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   800
          | RealArith.Axiom_le n =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   801
              if eval FuncUtil.Ctermfunc.empty p </ Rat.zero then nth les n
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   802
              else raise Failure "trivial_axiom: Not a trivial axiom"
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   803
          | RealArith.Axiom_lt n =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   804
              if eval FuncUtil.Ctermfunc.empty p <=/ Rat.zero then nth lts n
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   805
              else raise Failure "trivial_axiom: Not a trivial axiom"
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   806
          | _ => error "trivial_axiom: Not a trivial axiom")
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   807
      in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   808
        let val th = tryfind trivial_axiom (keq @ klep @ kltp) in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   809
          (fconv_rule (arg_conv (arg1_conv (real_poly_conv ctxt))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   810
            then_conv Numeral_Simprocs.field_comp_conv ctxt) th,
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   811
            RealArith.Trivial)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   812
        end handle Failure _ =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   813
          let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   814
            val proof =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   815
              (case proof_method of
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   816
                Certificate certs =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   817
                  (* choose certificate *)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   818
                  let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   819
                    fun chose_cert [] (RealArith.Cert c) = c
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   820
                      | chose_cert (RealArith.Left::s) (RealArith.Branch (l, _)) = chose_cert s l
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   821
                      | chose_cert (RealArith.Right::s) (RealArith.Branch (_, r)) = chose_cert s r
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   822
                      | chose_cert _ _ = error "certificate tree in invalid form"
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   823
                  in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   824
                    chose_cert cert_choice certs
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   825
                  end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   826
              | Prover prover =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   827
                  (* call prover *)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   828
                  let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   829
                    val pol = fold_rev poly_mul (map fst ltp) (poly_const Rat.one)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   830
                    val leq = lep @ ltp
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   831
                    fun tryall d =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   832
                      let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   833
                        val e = multidegree pol
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   834
                        val k = if e = 0 then 0 else d div e
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   835
                        val eq' = map fst eq
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   836
                      in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   837
                        tryfind (fn i =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   838
                            (d, i, real_positivnullstellensatz_general ctxt prover false d eq' leq
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   839
                              (poly_neg(poly_pow pol i))))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   840
                          (0 upto k)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   841
                      end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   842
                    val (_,i,(cert_ideal,cert_cone)) = deepen tryall 0
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   843
                    val proofs_ideal =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   844
                      map2 (fn q => fn (_,ax) => RealArith.Eqmul(q,ax)) cert_ideal eq
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   845
                    val proofs_cone = map cterm_of_sos cert_cone
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   846
                    val proof_ne =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   847
                      if null ltp then RealArith.Rational_lt Rat.one
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   848
                      else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   849
                        let val p = foldr1 RealArith.Product (map snd ltp) in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   850
                          funpow i (fn q => RealArith.Product (p, q))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   851
                            (RealArith.Rational_lt Rat.one)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   852
                        end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   853
                  in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   854
                    foldr1 RealArith.Sum (proof_ne :: proofs_ideal @ proofs_cone)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   855
                  end)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   856
          in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   857
            (translator (eqs,les,lts) proof, RealArith.Cert proof)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   858
          end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   859
      end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   860
  in mainf end
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   861
end
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   862
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   863
fun C f x y = f y x;
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   864
(* FIXME : This is very bad!!!*)
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   865
fun subst_conv eqs t =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   866
  let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   867
    val t' = fold (Thm.lambda o Thm.lhs_of) eqs t
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   868
  in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   869
    Conv.fconv_rule (Thm.beta_conversion true) (fold (C Thm.combination) eqs (Thm.reflexive t'))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   870
  end
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   871
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   872
(* A wrapper that tries to substitute away variables first.                  *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   873
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   874
local
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   875
  open Conv
35408
b48ab741683b modernized structure Term_Ord;
wenzelm
parents: 33906
diff changeset
   876
  fun simple_cterm_ord t u = Term_Ord.fast_term_ord (term_of t, term_of u) = LESS
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   877
  val concl = Thm.dest_arg o cprop_of
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   878
  val shuffle1 =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   879
    fconv_rule (rewr_conv @{lemma "(a + x == y) == (x == y - (a::real))"
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   880
      by (atomize (full)) (simp add: field_simps)})
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   881
  val shuffle2 =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   882
    fconv_rule (rewr_conv @{lemma "(x + a == y) ==  (x == y - (a::real))"
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   883
      by (atomize (full)) (simp add: field_simps)})
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   884
  fun substitutable_monomial fvs tm =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   885
    (case term_of tm of
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   886
      Free (_, @{typ real}) =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   887
        if not (member (op aconvc) fvs tm) then (Rat.one, tm)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   888
        else raise Failure "substitutable_monomial"
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   889
    | @{term "op * :: real => _"} $ _ $ (Free _) =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   890
        if RealArith.is_ratconst (Thm.dest_arg1 tm) andalso
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   891
          not (member (op aconvc) fvs (Thm.dest_arg tm))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   892
        then (RealArith.dest_ratconst (Thm.dest_arg1 tm), Thm.dest_arg tm)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   893
        else raise Failure "substitutable_monomial"
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   894
    | @{term "op + :: real => _"}$_$_ =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   895
         (substitutable_monomial (Thm.add_cterm_frees (Thm.dest_arg tm) fvs) (Thm.dest_arg1 tm)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   896
           handle Failure _ =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   897
            substitutable_monomial (Thm.add_cterm_frees (Thm.dest_arg1 tm) fvs) (Thm.dest_arg tm))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   898
    | _ => raise Failure "substitutable_monomial")
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   899
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   900
  fun isolate_variable v th =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   901
    let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   902
      val w = Thm.dest_arg1 (cprop_of th)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   903
    in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   904
      if v aconvc w then th
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   905
      else
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   906
        (case term_of w of
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   907
          @{term "op + :: real => _"} $ _ $ _ =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   908
            if Thm.dest_arg1 w aconvc v then shuffle2 th
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   909
            else isolate_variable v (shuffle1 th)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   910
        | _ => error "isolate variable : This should not happen?")
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   911
   end
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   912
in
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   913
32268
d50f0cb67578 Functionality for sum of squares to call a remote csdp prover
Philipp Meyer
parents: 32150
diff changeset
   914
fun real_nonlinear_subst_prover prover ctxt =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   915
  let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   916
    val {add = _, mul = real_poly_mul_conv, neg = _, pow = _, sub = _, main = real_poly_conv} =
44453
082edd97ffe1 comment out dead code to avoid compiler warnings
huffman
parents: 42616
diff changeset
   917
      Semiring_Normalizer.semiring_normalizers_ord_wrapper ctxt
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   918
        (the (Semiring_Normalizer.match ctxt @{cterm "(0::real) + 1"}))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   919
        simple_cterm_ord
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   920
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   921
    fun make_substitution th =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   922
      let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   923
        val (c,v) = substitutable_monomial [] (Thm.dest_arg1(concl th))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   924
        val th1 =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   925
          Drule.arg_cong_rule
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   926
            (Thm.apply @{cterm "op * :: real => _"} (RealArith.cterm_of_rat (Rat.inv c)))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   927
            (mk_meta_eq th)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   928
        val th2 = fconv_rule (binop_conv (real_poly_mul_conv ctxt)) th1
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   929
      in fconv_rule (arg_conv (real_poly_conv ctxt)) (isolate_variable v th2) end
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   930
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   931
    fun oprconv cv ct =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   932
      let val g = Thm.dest_fun2 ct in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   933
        if g aconvc @{cterm "op <= :: real => _"} orelse g aconvc @{cterm "op < :: real => _"}
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   934
        then arg_conv cv ct else arg1_conv cv ct
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   935
      end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   936
    fun mainf cert_choice translator =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   937
      let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   938
        fun substfirst (eqs, les, lts) =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   939
          (let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   940
              val eth = tryfind make_substitution eqs
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   941
              val modify =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   942
                fconv_rule (arg_conv (oprconv(subst_conv [eth] then_conv (real_poly_conv ctxt))))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   943
            in
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   944
              substfirst
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   945
                (filter_out
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   946
                  (fn t => (Thm.dest_arg1 o Thm.dest_arg o cprop_of) t aconvc @{cterm "0::real"})
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   947
                  (map modify eqs),
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   948
                  map modify les,
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   949
                  map modify lts)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   950
            end handle Failure  _ =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   951
              real_nonlinear_prover prover ctxt cert_choice translator (rev eqs, rev les, rev lts))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   952
      in substfirst end
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   953
  in mainf end
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   954
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   955
(* Overall function. *)
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   956
32645
1cc5b24f5a01 sos method generates and uses proof certificates
Philipp Meyer
parents: 32332
diff changeset
   957
fun real_sos prover ctxt =
32828
ad76967c703d removed opening of structures
Philipp Meyer
parents: 32740
diff changeset
   958
  RealArith.gen_prover_real_arith ctxt (real_nonlinear_subst_prover prover ctxt)
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   959
31119
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   960
end;
2532bb2d65c7 A decision method for universal multivariate real arithmetic with add
chaieb
parents:
diff changeset
   961
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   962
val known_sos_constants =
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   963
  [@{term "op ==>"}, @{term "Trueprop"},
56625
54505623a8ef sos accepts False, returns apply command
paulson <lp15@cam.ac.uk>
parents: 56536
diff changeset
   964
   @{term HOL.False}, @{term HOL.implies}, @{term HOL.conj}, @{term HOL.disj},
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   965
   @{term "Not"}, @{term "op = :: bool => _"},
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   966
   @{term "All :: (real => _) => _"}, @{term "Ex :: (real => _) => _"},
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   967
   @{term "op = :: real => _"}, @{term "op < :: real => _"},
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   968
   @{term "op <= :: real => _"},
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   969
   @{term "op + :: real => _"}, @{term "op - :: real => _"},
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   970
   @{term "op * :: real => _"}, @{term "uminus :: real => _"},
31512
27118561c2e0 Tuned sos tactic to reject non SOS goals
chaieb
parents: 31131
diff changeset
   971
   @{term "op / :: real => _"}, @{term "inverse :: real => _"},
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   972
   @{term "op ^ :: real => _"}, @{term "abs :: real => _"},
31512
27118561c2e0 Tuned sos tactic to reject non SOS goals
chaieb
parents: 31131
diff changeset
   973
   @{term "min :: real => _"}, @{term "max :: real => _"},
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46497
diff changeset
   974
   @{term "0::real"}, @{term "1::real"},
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46497
diff changeset
   975
   @{term "numeral :: num => nat"},
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46497
diff changeset
   976
   @{term "numeral :: num => real"},
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46497
diff changeset
   977
   @{term "Num.Bit0"}, @{term "Num.Bit1"}, @{term "Num.One"}];
31512
27118561c2e0 Tuned sos tactic to reject non SOS goals
chaieb
parents: 31131
diff changeset
   978
32839
a007a7cd8c2f tuned header;
wenzelm
parents: 32838
diff changeset
   979
fun check_sos kcts ct =
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   980
  let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   981
    val t = term_of ct
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   982
    val _ =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   983
      if not (null (Term.add_tfrees t []) andalso null (Term.add_tvars t []))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   984
      then error "SOS: not sos. Additional type varables"
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   985
      else ()
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   986
    val fs = Term.add_frees t []
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   987
    val _ =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   988
      if exists (fn ((_,T)) => not (T = @{typ "real"})) fs
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   989
      then error "SOS: not sos. Variables with type not real"
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   990
      else ()
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   991
    val vs = Term.add_vars t []
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   992
    val _ =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   993
      if exists (fn ((_,T)) => not (T = @{typ "real"})) vs
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   994
      then error "SOS: not sos. Variables with type not real"
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   995
      else ()
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   996
    val ukcs = subtract (fn (t,p) => Const p aconv t) kcts (Term.add_consts t [])
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   997
    val _ =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   998
      if null ukcs then ()
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
   999
      else error ("SOSO: Unknown constants in Subgoal:" ^ commas (map fst ukcs))
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1000
  in () end
31512
27118561c2e0 Tuned sos tactic to reject non SOS goals
chaieb
parents: 31131
diff changeset
  1001
32838
d9dfd30af9ae core_sos_tac: SUBPROOF body operates on subgoal 1;
wenzelm
parents: 32831
diff changeset
  1002
fun core_sos_tac print_cert prover = SUBPROOF (fn {concl, context, ...} =>
32831
1352736e5727 changed core_sos_tac to use SUBPROOF
Philipp Meyer
parents: 32830
diff changeset
  1003
  let
32838
d9dfd30af9ae core_sos_tac: SUBPROOF body operates on subgoal 1;
wenzelm
parents: 32831
diff changeset
  1004
    val _ = check_sos known_sos_constants concl
d9dfd30af9ae core_sos_tac: SUBPROOF body operates on subgoal 1;
wenzelm
parents: 32831
diff changeset
  1005
    val (ths, certificates) = real_sos prover context (Thm.dest_arg concl)
d9dfd30af9ae core_sos_tac: SUBPROOF body operates on subgoal 1;
wenzelm
parents: 32831
diff changeset
  1006
    val _ = print_cert certificates
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1007
  in rtac ths 1 end);
31131
d9752181691a Now deals with division
chaieb
parents: 31119
diff changeset
  1008
44453
082edd97ffe1 comment out dead code to avoid compiler warnings
huffman
parents: 42616
diff changeset
  1009
fun default_SOME _ NONE v = SOME v
082edd97ffe1 comment out dead code to avoid compiler warnings
huffman
parents: 42616
diff changeset
  1010
  | default_SOME _ (SOME v) _ = SOME v;
31131
d9752181691a Now deals with division
chaieb
parents: 31119
diff changeset
  1011
d9752181691a Now deals with division
chaieb
parents: 31119
diff changeset
  1012
fun lift_SOME f NONE a = f a
44453
082edd97ffe1 comment out dead code to avoid compiler warnings
huffman
parents: 42616
diff changeset
  1013
  | lift_SOME _ (SOME a) _ = SOME a;
31131
d9752181691a Now deals with division
chaieb
parents: 31119
diff changeset
  1014
d9752181691a Now deals with division
chaieb
parents: 31119
diff changeset
  1015
d9752181691a Now deals with division
chaieb
parents: 31119
diff changeset
  1016
local
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1017
  val is_numeral = can (HOLogic.dest_number o term_of)
31131
d9752181691a Now deals with division
chaieb
parents: 31119
diff changeset
  1018
in
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1019
  fun get_denom b ct =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1020
    (case term_of ct of
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1021
      @{term "op / :: real => _"} $ _ $ _ =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1022
        if is_numeral (Thm.dest_arg ct)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1023
        then get_denom b (Thm.dest_arg1 ct)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1024
        else default_SOME (get_denom b) (get_denom b (Thm.dest_arg ct)) (Thm.dest_arg ct, b)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1025
    | @{term "op < :: real => _"} $ _ $ _ =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1026
        lift_SOME (get_denom true) (get_denom true (Thm.dest_arg ct)) (Thm.dest_arg1 ct)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1027
    | @{term "op <= :: real => _"} $ _ $ _ =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1028
        lift_SOME (get_denom true) (get_denom true (Thm.dest_arg ct)) (Thm.dest_arg1 ct)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1029
    | _ $ _ => lift_SOME (get_denom b) (get_denom b (Thm.dest_fun ct)) (Thm.dest_arg ct)
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1030
    | _ => NONE)
31131
d9752181691a Now deals with division
chaieb
parents: 31119
diff changeset
  1031
end;
d9752181691a Now deals with division
chaieb
parents: 31119
diff changeset
  1032
55508
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1033
fun elim_one_denom_tac ctxt = CSUBGOAL (fn (P, i) =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1034
  (case get_denom false P of
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1035
    NONE => no_tac
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1036
  | SOME (d, ord) =>
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1037
      let
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1038
        val simp_ctxt =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1039
          ctxt addsimps @{thms field_simps}
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1040
          addsimps [@{thm nonzero_power_divide}, @{thm power_divide}]
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1041
        val th =
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1042
          instantiate' [] [SOME d, SOME (Thm.dest_arg P)]
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1043
            (if ord then @{lemma "(d=0 --> P) & (d>0 --> P) & (d<(0::real) --> P) ==> P" by auto}
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1044
             else @{lemma "(d=0 --> P) & (d ~= (0::real) --> P) ==> P" by blast})
90c42b130652 tuned whitespace;
wenzelm
parents: 54742
diff changeset
  1045
      in rtac th i THEN Simplifier.asm_full_simp_tac simp_ctxt i end));
31131
d9752181691a Now deals with division
chaieb
parents: 31119
diff changeset
  1046
d9752181691a Now deals with division
chaieb
parents: 31119
diff changeset
  1047
fun elim_denom_tac ctxt i = REPEAT (elim_one_denom_tac ctxt i);
d9752181691a Now deals with division
chaieb
parents: 31119
diff changeset
  1048
32949
aa6c470a962a eliminated slightly odd get/set operations in favour of Unsynchronized.ref;
wenzelm
parents: 32839
diff changeset
  1049
fun sos_tac print_cert prover ctxt =
56536
aefb4a8da31f made mult_nonneg_nonneg a simp rule
nipkow
parents: 55508
diff changeset
  1050
  (* The SOS prover breaks if mult_nonneg_nonneg is in the simpset *)
aefb4a8da31f made mult_nonneg_nonneg a simp rule
nipkow
parents: 55508
diff changeset
  1051
  let val ctxt' = ctxt delsimps [@{thm mult_nonneg_nonneg}]
aefb4a8da31f made mult_nonneg_nonneg a simp rule
nipkow
parents: 55508
diff changeset
  1052
  in Object_Logic.full_atomize_tac ctxt' THEN'
aefb4a8da31f made mult_nonneg_nonneg a simp rule
nipkow
parents: 55508
diff changeset
  1053
     elim_denom_tac ctxt' THEN'
aefb4a8da31f made mult_nonneg_nonneg a simp rule
nipkow
parents: 55508
diff changeset
  1054
     core_sos_tac print_cert prover ctxt'
aefb4a8da31f made mult_nonneg_nonneg a simp rule
nipkow
parents: 55508
diff changeset
  1055
  end;
31131
d9752181691a Now deals with division
chaieb
parents: 31119
diff changeset
  1056
31512
27118561c2e0 Tuned sos tactic to reject non SOS goals
chaieb
parents: 31131
diff changeset
  1057
end;