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

Method fp_less

src/ap.cpp:1087–1093  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1085}
1086
1087bool ap::fp_less(double v1, double v2)
1088{
1089 // IEEE-strict floating point comparison
1090 volatile double x = v1;
1091 volatile double y = v2;
1092 return x<y;
1093}
1094
1095bool ap::fp_less_eq(double v1, double v2)
1096{

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected