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

Method fp_less_eq

src/ap.cpp:1095–1101  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1093}
1094
1095bool ap::fp_less_eq(double v1, double v2)
1096{
1097 // IEEE-strict floating point comparison
1098 volatile double x = v1;
1099 volatile double y = v2;
1100 return x<=y;
1101}
1102
1103bool ap::fp_greater(double v1, double v2)
1104{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected