![]() |
|
|||
File indexing completed on 2025-04-19 09:09:51
0001 #ifndef ATOOLS_Math_Uncertain_H 0002 #define ATOOLS_Math_Uncertain_H 0003 0004 namespace ATOOLS { 0005 0006 template <typename T> 0007 struct Uncertain { 0008 T value; 0009 T error; 0010 0011 int PercentError() const { return int(error / value * 10000) / 100; } 0012 }; 0013 0014 } 0015 0016 #endif
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
![]() ![]() |