Skip to content
Snippets Groups Projects
Commit c7705b00 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

cap symbol rank to 2 in tests

parent c94e397e
No related branches found
No related tags found
1 merge request!106Master merge jt
Pipeline #48772 passed with warnings
...@@ -58,7 +58,7 @@ static std::string qGen ( const EGenerateType & type, int height, int nodes, int ...@@ -58,7 +58,7 @@ static std::string qGen ( const EGenerateType & type, int height, int nodes, int
oss << " (bool) false"; /* alphRand */ oss << " (bool) false"; /* alphRand */
if ( type == EGenerateType::NONLINEAR_PATTERN || type == EGenerateType::NONLINEAR_PATTERN_SINGLE_VAR ) if ( type == EGenerateType::NONLINEAR_PATTERN || type == EGenerateType::NONLINEAR_PATTERN_SINGLE_VAR )
oss << " (bool)" << ( type == EGenerateType::NONLINEAR_PATTERN_SINGLE_VAR ); oss << " (bool)" << ( type == EGenerateType::NONLINEAR_PATTERN_SINGLE_VAR );
oss << " (int)" << 5; /* rank */ oss << " (int)" << 2; /* rank */
oss << "> $" << output; oss << "> $" << output;
return oss.str ( ); return oss.str ( );
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment