Skip to content

Commit 8dc97c4

Browse files
authored
Update mintermatch.cpp
1 parent f15400f commit 8dc97c4

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

mintermatch.cpp

-6
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
#include "mintermatch.h"
22

3-
43
String MinterMatch::NormalePip(String bigInt, uint8_t &length)
54
{
65
// const uint8_t length = bigInt.length();
@@ -29,12 +28,7 @@ float MinterMatch::getAmount(String bigInt)
2928
const String modulo = bigInt.substr(moduloLength);
3029
const String integer = bigInt.substr(0, moduloLength);
3130
#endif
32-
// const String numFloat = String(integer.operator+=(".").operator+=(modulo.substring(0, PIP_PRECISION)));
3331
const String numFloat = integer+"."+modulo;
34-
// numFloat.concat(integer, ",", modulo);
35-
// std::cout<<"numFloat "<< numFloat <<std::endl;
3632
const float numF = atof(numFloat.c_str());
37-
// sscanf(numFloat.c_str(), "%f", &numF);
38-
// const float numF = numFloat.toFloat();
3933
return numF;
4034
}

0 commit comments

Comments
 (0)