time-to-botec

Benchmark sampling in different programming languages
Log | Files | Refs | README

magicNumbers.js (350B)


      1 export const epsilon_float = 2.22044604925031308e-16;
      2 export const Environment = {
      3     defaultXYPointLength: 1000,
      4     defaultSampleCount: 1000,
      5     sparklineLength: 20,
      6 };
      7 export const OpCost = {
      8     floatCost: 1,
      9     symbolicCost: 1000,
     10     wildcardCost: 1000,
     11 };
     12 export const Epsilon = {
     13     ten: 1e-10,
     14 };
     15 //# sourceMappingURL=magicNumbers.js.map