-
Notifications
You must be signed in to change notification settings - Fork 9
/
opt.mli
21 lines (15 loc) · 1.13 KB
/
opt.mli
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(* ========================================================================== *)
(* FPTaylor: A Tool for Rigorous Estimation of Round-off Errors *)
(* *)
(* Author: Alexey Solovyev, University of Utah *)
(* *)
(* This file is distributed under the terms of the MIT license *)
(* ========================================================================== *)
(* -------------------------------------------------------------------------- *)
(* General optimization functions *)
(* -------------------------------------------------------------------------- *)
open Opt_common
val optimize_expr : opt_pars -> bool -> Expr.constraints -> Expr.expr -> opt_result * opt_result
val find_min_max : opt_pars -> Expr.constraints -> Expr.expr -> float * float
val find_max : opt_pars -> Expr.constraints -> Expr.expr -> opt_result
val find_max_abs : opt_pars -> Expr.constraints -> Expr.expr -> opt_result