Hi all,
I am an absolute newbie to Coq; I have just downloaded and and run the installer for windows. I plan to use the built-in GAPPA functionality in order to obtain and compare error bounds for floating-point calculations that can be formulated in several mathematically equivalent ways.
Unfortunately, the error message
“Unable to locate library Fcore.”
pops up when I try to execute the following example, the first lines of which I have compiled from the GAPPA manual:
Require Import Reals.
Require Import Fcore.
Require Import Gappa_tactic.
Open Scope R_scope.
@rnd = float< ieee_64, ne >;
xsq = xx*xx;
xsqrnd = rnd(xsq);
omxsq = 1-xsq;
omxsqrnd = rnd(1-xsqrnd);
sqrtomxsq = sqrt(omxsq);
sqrtomxsqrnd = rnd(sqrtomxsq);
errout = (sqrtomxsqrnd - sqrtomxsq);
{ xx in [0,1] -> |errout| in ? };
Importing “Reals” works, but importing “Fcore” does not.
What am I missing? I checked every box I could find in during installation.
I have already replaced “V8.9.1” by “current” in the two hardcoded path entries for refman and stdlib, resp., in the file coqiderc found in $home\AppData\Local\coq. The help now works, but “Fcore” still is not found.
All the best
Schorsch