File tree 2 files changed +3
-3
lines changed
2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 5
5
<Configuration Condition =" '$(Configuration)' == '' " >Debug</Configuration >
6
6
<Platform Condition =" '$(Platform)' == '' " >AnyCPU</Platform >
7
7
<ProjectGuid >{81CFEE8D-0FCA-47FD-8084-E2E84C858440}</ProjectGuid >
8
- <OutputType >Exe </OutputType >
8
+ <OutputType >WinExe </OutputType >
9
9
<AppDesignerFolder >Properties</AppDesignerFolder >
10
10
<RootNamespace >SalemOptimizer</RootNamespace >
11
11
<AssemblyName >SalemOptimizer</AssemblyName >
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ public Organism[] Solve()
29
29
var organisms = new List < Organism > ( ) ;
30
30
var generations = 0 ;
31
31
32
- for ( int i = 0 ; i < 100 ; i ++ )
32
+ for ( int i = 0 ; i < 50 ; i ++ )
33
33
{
34
34
Organism organism = new Organism ( this , problem ) ;
35
35
organisms . Add ( organism ) ;
@@ -43,7 +43,7 @@ public Organism[] Solve()
43
43
44
44
var newBest = false ;
45
45
46
- while ( generations < 4000 )
46
+ while ( generations < 2000 )
47
47
{
48
48
if ( cancellationToken . IsCancellationRequested ) break ;
49
49
You can’t perform that action at this time.
0 commit comments