commit 638714c2ffb8fe008f23f17e1dc908321012027c
parent 44f1d909ad8ed3fcdec478c8e8d99956839102b5
Author: Adam M <[email protected]>
Date: Thu, 7 Feb 2019 00:04:32 -0600
remove print statements from LaundrySoup
Diffstat:
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/src/ComputerscareLaundrySoup.cpp b/src/ComputerscareLaundrySoup.cpp
@@ -176,12 +176,12 @@ void setAbsoluteSequenceFromQueue(int index) {
laundrySequences[index] = lss;
if(!lss.inError) {
laundrySequences[index] = lss;
- laundrySequences[index].print();
+ //laundrySequences[index].print();
textFields[index]->inError=false;
}
else {
printf("ERROR\n");
- lss.print();
+ //lss.print();
textFields[index]->inError=true;
}
}
diff --git a/src/dtpulse.cpp b/src/dtpulse.cpp
@@ -366,8 +366,8 @@ bool matchParens(std::string value) {
return theyMatch;
}
void whoKnows(std::string input) {
- AbsoluteSequence abs = AbsoluteSequence(input,knobandinputlookup);
- abs.print();
+ //AbsoluteSequence abs = AbsoluteSequence(input,knobandinputlookup);
+ /*abs.print();
printf(" indexSequence:\n");
printVector(abs.indexSequence);
printf(" workingIndexSequence:\n");
@@ -377,17 +377,17 @@ void whoKnows(std::string input) {
for(int j = 0; j < 13; j++) {
abs.incrementAndCheck();
printVector(abs.workingIndexSequence);
- }
+ }*/
}
void whoKnowsLaundry(std::string input) {
- LaundrySoupSequence laundry = LaundrySoupSequence(input);
+ //LaundrySoupSequence laundry = LaundrySoupSequence(input);
- laundry.print();
+ /*laundry.print();
printf(" iteration:\n");
for(int j = 0; j < 13; j++) {
laundry.incrementAndCheck();
printVector(laundry.workingPulseSequence);
- }
+ }*/
}
LaundrySoupSequence::LaundrySoupSequence() {