-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adding parameters to auto to tune some builtin constants
+ a not working "Filename.chop_extension" removed. It does not understand our uri fragments + the "debug" flag enables auto debug_print that produces stack overflow sometimes :(
- Loading branch information
Showing
9 changed files
with
756 additions
and
721 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,47 +1,50 @@ | ||
(* | ||
||M|| This file is part of HELM, an Hypertextual, Electronic | ||
||A|| Library of Mathematics, developed at the Computer Science | ||
||T|| Department, University of Bologna, Italy. | ||
||I|| | ||
||T|| HELM is free software; you can redistribute it and/or | ||
||A|| modify it under the terms of the GNU General Public License | ||
\ / version 2 or (at your option) any later version. | ||
\ / This software is distributed as is, NO WARRANTY. | ||
||M|| This file is part of HELM, an Hypertextual, Electronic | ||
||A|| Library of Mathematics, developed at the Computer Science | ||
||T|| Department, University of Bologna, Italy. | ||
||I|| | ||
||T|| HELM is free software; you can redistribute it and/or | ||
||A|| modify it under the terms of the GNU General Public License | ||
\ / version 2 or (at your option) any later version. | ||
\ / This software is distributed as is, NO WARRANTY. | ||
V_______________________________________________________________ *) | ||
|
||
(* $Id: orderings.ml 9869 2009-06-11 22:52:38Z denes $ *) | ||
|
||
(* FG: this was 300.0 hard coded *) | ||
val time: float ref | ||
|
||
val nparamod : | ||
#NCicCoercion.status -> | ||
NCic.metasenv -> NCic.substitution -> NCic.context -> | ||
NCic.metasenv -> NCic.substitution -> NCic.context -> | ||
(NCic.term * NCic.term) -> (NCic.term * NCic.term) list -> | ||
(NCic.term * NCic.term * NCic.metasenv * NCic.substitution) list | ||
|
||
type state | ||
type state | ||
val empty_state: state | ||
val forward_infer_step: | ||
val forward_infer_step: | ||
#NCic.status -> NCic.metasenv -> NCic.substitution -> NCic.context -> | ||
state -> NCic.term -> NCic.term -> state | ||
val index_obj: | ||
#NCic.status -> state -> NUri.uri -> state * NCic.term Terms.unit_clause option | ||
val is_equation: | ||
#NCic.status -> NCic.metasenv -> NCic.substitution -> NCic.context -> | ||
NCic.term -> bool | ||
val paramod : | ||
val paramod : | ||
#NCicCoercion.status -> | ||
NCic.metasenv -> NCic.substitution -> NCic.context -> | ||
state -> | ||
(NCic.term * NCic.term) -> | ||
state -> | ||
(NCic.term * NCic.term) -> | ||
(NCic.term * NCic.term * NCic.metasenv * NCic.substitution) list | ||
val fast_eq_check : | ||
val fast_eq_check : | ||
#NCicCoercion.status -> | ||
NCic.metasenv -> NCic.substitution -> NCic.context -> | ||
state -> | ||
(NCic.term * NCic.term) -> | ||
state -> | ||
(NCic.term * NCic.term) -> | ||
(NCic.term * NCic.term * NCic.metasenv * NCic.substitution) list | ||
val demod : | ||
val demod : | ||
#NCicCoercion.status -> | ||
NCic.metasenv -> NCic.substitution -> NCic.context -> | ||
state -> | ||
(NCic.term * NCic.term) -> | ||
state -> | ||
(NCic.term * NCic.term) -> | ||
(NCic.term * NCic.term * NCic.metasenv * NCic.substitution) list |
Oops, something went wrong.