diff options
author | justanothercatgirl <sotov@twistea.su> | 2024-11-24 19:42:42 +0300 |
---|---|---|
committer | justanothercatgirl <sotov@twistea.su> | 2024-11-24 19:42:42 +0300 |
commit | fcf77faf19dcb9d75b7842ec7138551bd73418cf (patch) | |
tree | 24da880c4513c3da7899d39b754a0a5cc8407615 /vtek3/main.cpp | |
parent | 89d26d5d0e8ff2b026cc99606868699f6fcc08db (diff) |
Added 101 prak
Diffstat (limited to 'vtek3/main.cpp')
-rw-r--r-- | vtek3/main.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/vtek3/main.cpp b/vtek3/main.cpp index 6984eff..5b86cca 100644 --- a/vtek3/main.cpp +++ b/vtek3/main.cpp @@ -41,9 +41,10 @@ RT err_MS8040(const std::vector<RT> &args) { // output: DI RT D_M830B(const std::vector<RT> &args) { RT val = args[0]; - if (val < 0.002) return 1e-6; - if (val < 0.020) return 1e-5; - if (val < 0.200) return 1e-4; + if (val < 0.0002) return 1e-6; + if (val < 0.002) return 1e-5; + if (val < 0.020) return 1e-4; + if (val < 0.200) return 1e-3; return 1e-3; } |