(* ========================================================================== *)
(* FLYSPECK - TEXT FORMALIZATION *)
(* *)
(* Chapter: Nonlinear *)
(* Author: Thomas C. Hales *)
(* Date: 2012-04-15 *)
(* ========================================================================== *)
flyspeck_needs "../graph_generator/graph_control.hl";;
(* Let's check that repeated values are compatible *)
module Dont_repeat_yourself = struct
open Hales_tactic;;
(*
glpk/minorlp/tame_table.mod repeats inequalities from ineq.hl, as does
glpk/minorlp/OXLZLEZ.mod
These have been checked by hand, but it isn't automated.
TODO: automate comparison of graph_control with Bauer Nipkow values.
*)
(* Table A, B, D *)
let table_a = Tame_defs.a_tame;;
let table_b = Tame_defs.b_tame;;
let table_d = Tame_defs.d_tame;;
let squander = Tame_defs.tgt;;
let table_a_bn = Tame_classification.bn_excessTCount;;
let table_b_bn = Tame_classification.bn_squanderVertex;;
let table_d_bn = Tame_classification.bn_squanderFace;;
let squander_bn = Tame_classification.bn_squanderTarget;;
let table_a_gg = Graph_control.flyspeck_properties.Graph_control.table_weight_a;;
let table_b_gg = Graph_control.flyspeck_properties.Graph_control.table_weight_b;;
let table_d_gg = Graph_control.flyspeck_properties.Graph_control.table_weight_d;;
let squander_gg = Graph_control.flyspeck_properties.Graph_control.squander_target;;
(* }}} *)
(* }}} *)
(* }}} *)
(* }}} *)
end;;