MCPcopy Create free account
hub / github.com/BoevaLab/FREEC / fp_eq

Method fp_eq

src/ap.cpp:1073–1079  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1071}
1072
1073bool ap::fp_eq(double v1, double v2)
1074{
1075 // IEEE-strict floating point comparison
1076 volatile double x = v1;
1077 volatile double y = v2;
1078 return x==y;
1079}
1080
1081bool ap::fp_neq(double v1, double v2)
1082{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected