Skip to content

Commit

Permalink
fix: extraneous parentheses
Browse files Browse the repository at this point in the history
  • Loading branch information
mmklee committed Nov 16, 2012
1 parent 5337d7e commit 1fa5f53
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion factory/libfac/charset/charset.cc
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,7 @@ irras( CFList & AS, int & ja, CanonicalForm & reducible)
// else{ as.append(elem) ; }
}
// CERR << "ind= " << ind << "\n";
if ( (ind == 1) ) //&& ( as.length() > 1) )
if ( ind == 1 ) //&& ( as.length() > 1) )
{
if ( irreducible(AS) )
{ // as quasilinear? => irreducible!
Expand Down

0 comments on commit 1fa5f53

Please sign in to comment.