From 8ce723d062c498463d801cfd17a88c607144209a Mon Sep 17 00:00:00 2001 From: Aleksey Lobanov Date: Mon, 3 Feb 2020 19:58:53 +0300 Subject: [PATCH] File output reduced --- main.cpp | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/main.cpp b/main.cpp index a601263..450dc99 100644 --- a/main.cpp +++ b/main.cpp @@ -115,8 +115,8 @@ vector get_function_class(MyFunction f, const vector< MyMatrix >& tr ); bool is_inserted = transformed_res.insert(linear_transformed).second; if ( is_inserted ) { - out << linear_transformed.string() << " = " << f.string() << " with (" - << transformation.string(",") << ")" << endl; + // out << linear_transformed.string() << " = " << f.string() << " with (" + // << transformation.string(",") << ")" << endl; } } } @@ -234,13 +234,10 @@ void fill_ranks(vector monomials) { vector function_class = get_function_class( current_fn, possible_tranformations, f_out ); - cout << "size of function class is " << function_class.size() << endl; - f_out << "Function class for " << current_fn.string() << ": (" << endl; + f_out << "size of function class " << current_fn.string() << " is " << function_class.size() << endl; for (auto marked_function: function_class) { used_map[marked_function.value()] = 0; - f_out << " " << marked_function.string() << endl; } - f_out << ")" << endl; ranks.at(cur_rank - 1).push_back(current_fn); } cout << "total unique functions: " << total_functions << endl;