代码拉取完成,页面将自动刷新
(* ========================================================================== *)
(* 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 *)
(* ========================================================================== *)
(* -------------------------------------------------------------------------- *)
(* Main FPTaylor functions *)
(* -------------------------------------------------------------------------- *)
type error_type =
Err_abs_approx | Err_abs_exact |
Err_rel_approx | Err_rel_exact |
Err_ulp_approx | Err_ulp_exact
type error_result = {
error_type : error_type;
(* Total error *)
(* Lower bounds of error intervals represent lower bounds
returned by a global optimization procedure.
low = neg_infinity if a lower bound is not returned. *)
error : Interval.interval option;
(* Second order error *)
total2 : Interval.interval option;
(* Error model *)
error_model : Expr.expr option;
}
type result = {
task : Task.task;
real_bounds : Interval.interval;
errors : error_result list;
elapsed_time : float;
}
val error_type_name : error_type -> string
val validate_options : unit -> unit
val fptaylor : input_files:string list -> result list
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。