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

Method fp_greater_eq

src/ap.cpp:1111–1117  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1109}
1110
1111bool ap::fp_greater_eq(double v1, double v2)
1112{
1113 // IEEE-strict floating point comparison
1114 volatile double x = v1;
1115 volatile double y = v2;
1116 return x>=y;
1117}
1118
1119/********************************************************************
1120Dataset functions

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected