[Quantproject-developers] QuantProject/b7_Scripts/TickerSelectionTesting GenomeManipulator.cs,1.5,1.
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2006-03-26 20:07:25
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv5147/b7_Scripts/TickerSelectionTesting Modified Files: GenomeManipulator.cs Log Message: Fixed bug in IsTickerContainedInGenome method. Index: GenomeManipulator.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/TickerSelectionTesting/GenomeManipulator.cs,v retrieving revision 1.5 retrieving revision 1.6 diff -C2 -d -r1.5 -r1.6 *** GenomeManipulator.cs 8 Aug 2005 19:15:41 -0000 1.5 --- GenomeManipulator.cs 26 Mar 2006 20:07:17 -0000 1.6 *************** *** 232,236 **** (geneCorrespondingToATicker<0 && genome.HasGene(Math.Abs(geneCorrespondingToATicker)-1)) || ! (geneCorrespondingToATicker>0 && genome.HasGene(- Math.Abs(geneCorrespondingToATicker)- 1)) ); --- 232,236 ---- (geneCorrespondingToATicker<0 && genome.HasGene(Math.Abs(geneCorrespondingToATicker)-1)) || ! (geneCorrespondingToATicker>=0 && genome.HasGene(- Math.Abs(geneCorrespondingToATicker)- 1)) ); |