Skip to content

Commit

Permalink
Apply code formatting (ECFLOW-1868)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcosbento committed Mar 31, 2023
1 parent bb4f943 commit 26fafe1
Show file tree
Hide file tree
Showing 51 changed files with 5,034 additions and 4,782 deletions.
77 changes: 38 additions & 39 deletions ANode/parser/test/ParseOnly.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@
//
// Description :
//============================================================================
#include <string>
#include <iostream>
#include <fstream>
#include <iostream>
#include <string>

#include "Defs.hpp"
#include "PrintStyle.hpp"
Expand All @@ -28,46 +28,45 @@ using namespace ecf;
// user 0m2.59s
// sys 0m0.18s

int main(int argc, char* argv[])
{
// cout << "argc = " << argc << "\n";
// for(int i = 0; i < argc; i++) {
// cout << "arg " << i << ":" << argv[i] << "\n";
// }
int main(int argc, char* argv[]) {
// cout << "argc = " << argc << "\n";
// for(int i = 0; i < argc; i++) {
// cout << "arg " << i << ":" << argv[i] << "\n";
// }

if (argc != 2) {
cout << "Expect single argument which is path to a defs file\n";
return 1;
}
if (argc != 2) {
cout << "Expect single argument which is path to a defs file\n";
return 1;
}

std::string path = argv[1];
std::string path = argv[1];

Defs defs;
std::string errorMsg,warningMsg;
if (!defs.restore(path,errorMsg,warningMsg)) {
cout << errorMsg << "\n";
cout << warningMsg << "\n";
return 1;
}
Defs defs;
std::string errorMsg, warningMsg;
if (!defs.restore(path, errorMsg, warningMsg)) {
cout << errorMsg << "\n";
cout << warningMsg << "\n";
return 1;
}

// // Determine average number of variables for nodes with variables
// vector<Node*> nodes;
// defs.getAllNodes(nodes);
// cout << "Total number of nodes: " << nodes.size() << "\n";
// size_t number_of_variables = 0;
// size_t nodes_with_variables = 0;
// for(const auto& n : nodes) {
// // cout << n->variables().size() << "\n";
// if (n->variables().size() > 0) {
// number_of_variables += n->variables().size();
// nodes_with_variables++;
// }
// }
// cout << "number_of_variables " << number_of_variables << "\n";
// cout << "nodes_with_variables " << nodes_with_variables << "\n";
// cout <<"Average number of variables per node " << (double)number_of_variables/nodes_with_variables << "\n";
// // Determine average number of variables for nodes with variables
// vector<Node*> nodes;
// defs.getAllNodes(nodes);
// cout << "Total number of nodes: " << nodes.size() << "\n";
// size_t number_of_variables = 0;
// size_t nodes_with_variables = 0;
// for(const auto& n : nodes) {
// // cout << n->variables().size() << "\n";
// if (n->variables().size() > 0) {
// number_of_variables += n->variables().size();
// nodes_with_variables++;
// }
// }
// cout << "number_of_variables " << number_of_variables << "\n";
// cout << "nodes_with_variables " << nodes_with_variables << "\n";
// cout <<"Average number of variables per node " << (double)number_of_variables/nodes_with_variables << "\n";

// PrintStyle style(PrintStyle::MIGRATE);
// cout << defs;
return 0;
// PrintStyle style(PrintStyle::MIGRATE);
// cout << defs;
return 0;
}
Loading

0 comments on commit 26fafe1

Please sign in to comment.