Skip to content

Commit

Permalink
removed some comments from the main function
Browse files Browse the repository at this point in the history
  • Loading branch information
josura committed Jul 14, 2023
1 parent 9d28cab commit b274907
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/main.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -341,10 +341,7 @@ int main(int argc, char** argv ) {
for(uint i = 0; i < cellTypes.size(); i++){
std::vector<std::string> nodeNames = cellToNodeNames[i];
std::cout << "[LOG] computation of perturbation for iteration intercell-intracell ("+ std::to_string(iterationIntercell) + "<->"+ std::to_string(iterationIntracell) + ") for cell (" + cellTypes[i]<<std::endl;
//std::vector<double> outputValues = cellComputations[i]->computeAugmentedPerturbation();
//std::vector<double> outputValues = cellComputations[i]->computeAugmentedPerturbationSaturated();
//std::vector<double> outputValues = cellComputations[i]->computeAugmentedPerturbationDissipatedBeforeCompute(iterationIntercell*intracellIterations + iterationIntracell); // TODO check if iteration intracell should be multiplied by iteration intercell
//std::vector<double> outputValues = cellComputations[i]->computeAugmentedPerturbationSaturatedAndDissipatedBeforeCompute(iterationIntercell*intracellIterations + iterationIntracell); // TODO check if iteration intracell should be multiplied by iteration intercell

if (saturation) {
if(vm.count("saturationTerm") == 0){
std::vector<double> outputValues = cellComputations[i]->computeAugmentedPerturbationEnhanced2(iterationIntercell*intracellIterations + iterationIntracell, saturation = true); // TODO check if iteration intracell should be multiplied by iteration intercell
Expand Down

0 comments on commit b274907

Please sign in to comment.