(VirusShiftMutation::operator()): Fix test for i>1.
This makes t-MGE1bit pass on x86_64 using GCC.
This commit is contained in:
parent
037ce32d90
commit
3533d8addb
3 changed files with 14 additions and 2 deletions
|
|
@ -110,7 +110,7 @@ public:
|
|||
_chrom.virusBitSet(i, false);
|
||||
}
|
||||
} else {
|
||||
if ( i - 1 > 0 ) {
|
||||
if ( i > 1 ) {
|
||||
_chrom.virusBitSet(i-1,true);
|
||||
_chrom.virusBitSet(i, false);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue