| author | boehmes | 
| Thu, 03 Sep 2009 22:47:31 +0200 | |
| changeset 32515 | e7c0d3c0494a | 
| parent 32498 | 1132c7c13f36 | 
| child 32518 | e3c4e337196c | 
| permissions | -rw-r--r-- | 
| 
32385
 
594890623c46
split actions from Mirabelle core (Mirabelle may thus be applied to basic theories in HOL)
 
boehmes 
parents:  
diff
changeset
 | 
1  | 
(* Title: mirabelle_arith.ML  | 
| 
 
594890623c46
split actions from Mirabelle core (Mirabelle may thus be applied to basic theories in HOL)
 
boehmes 
parents:  
diff
changeset
 | 
2  | 
Author: Jasmin Blanchette and Sascha Boehme  | 
| 
 
594890623c46
split actions from Mirabelle core (Mirabelle may thus be applied to basic theories in HOL)
 
boehmes 
parents:  
diff
changeset
 | 
3  | 
*)  | 
| 
 
594890623c46
split actions from Mirabelle core (Mirabelle may thus be applied to basic theories in HOL)
 
boehmes 
parents:  
diff
changeset
 | 
4  | 
|
| 
 
594890623c46
split actions from Mirabelle core (Mirabelle may thus be applied to basic theories in HOL)
 
boehmes 
parents:  
diff
changeset
 | 
5  | 
structure Mirabelle_Arith : MIRABELLE_ACTION =  | 
| 
 
594890623c46
split actions from Mirabelle core (Mirabelle may thus be applied to basic theories in HOL)
 
boehmes 
parents:  
diff
changeset
 | 
6  | 
struct  | 
| 
 
594890623c46
split actions from Mirabelle core (Mirabelle may thus be applied to basic theories in HOL)
 
boehmes 
parents:  
diff
changeset
 | 
7  | 
|
| 
32472
 
7b92a8b8daaf
Mirabelle: actions are responsible for their log messages, output is better readable
 
boehmes 
parents: 
32469 
diff
changeset
 | 
8  | 
fun arith_action {pre, timeout, log, ...} =
 | 
| 
 
7b92a8b8daaf
Mirabelle: actions are responsible for their log messages, output is better readable
 
boehmes 
parents: 
32469 
diff
changeset
 | 
9  | 
if Mirabelle.can_apply timeout Arith_Data.arith_tac pre  | 
| 
32498
 
1132c7c13f36
Mirabelle: actions are responsible for handling exceptions,
 
boehmes 
parents: 
32496 
diff
changeset
 | 
10  | 
then log "arith: succeeded"  | 
| 
32472
 
7b92a8b8daaf
Mirabelle: actions are responsible for their log messages, output is better readable
 
boehmes 
parents: 
32469 
diff
changeset
 | 
11  | 
else ()  | 
| 
32498
 
1132c7c13f36
Mirabelle: actions are responsible for handling exceptions,
 
boehmes 
parents: 
32496 
diff
changeset
 | 
12  | 
handle TimeLimit.TimeOut => log "arith: time out"  | 
| 
32385
 
594890623c46
split actions from Mirabelle core (Mirabelle may thus be applied to basic theories in HOL)
 
boehmes 
parents:  
diff
changeset
 | 
13  | 
|
| 
32515
 
e7c0d3c0494a
Mirabelle: actions are responsible for catching exceptions and producing suitable log messages (makes log message uniform),
 
boehmes 
parents: 
32498 
diff
changeset
 | 
14  | 
fun invoke _ = Mirabelle.register (Mirabelle.catch "arith: " arith_action)  | 
| 
32385
 
594890623c46
split actions from Mirabelle core (Mirabelle may thus be applied to basic theories in HOL)
 
boehmes 
parents:  
diff
changeset
 | 
15  | 
|
| 
 
594890623c46
split actions from Mirabelle core (Mirabelle may thus be applied to basic theories in HOL)
 
boehmes 
parents:  
diff
changeset
 | 
16  | 
end  |