Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/02/15 15:22:46 (9 years ago)
Author:
aballeit
Message:

#2283 x64 build of projects

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.GrammaticalOptimization/Evaluation/MainWindow.xaml.cs

    r12829 r12830  
    4242            CenterWindowOnScreen();
    4343            this.DataContext = vm = new EvaluationViewModel();
    44             vm.MaxLen = 100;
     44            vm.MaxLen = 23;
    4545            vm.MaxIterations = 500000;
    4646            vm.NrRuns = 20;
    47            
    4847        }
    4948
     
    164163            ISymbolicExpressionTreeProblem problem = vm.SelectedProblem;
    165164
    166            
    167 
    168165            Type policy = vm.SelectedPolicy;
    169166            IBanditPolicy policyInstance = null;
     
    189186            {
    190187                ISolver solver = null;
     188
    191189                Random random = new Random(Guid.NewGuid().GetHashCode());
    192190
     
    400398            tableExport.Append(
    401399                "Run\tMaxIterations\tEvaluations\tBestKnownQuality\tQuality\tQuality %\tFoundAt\tTotalTime\tSolutionTime\tEvaluationsPerSecond\tSolution");
    402             if (ListViewRuns.Items.Count > 0 && ((Run) ListViewRuns.Items[0]).TreeInfos != null)
     400            if (ListViewRuns.Items.Count > 0 && ((Run)ListViewRuns.Items[0]).TreeInfos != null)
    403401            {
    404402                tableExport.Append("\tTotalNodes\tUnexpandedNodes\tExpandedNodes\tLeaveNodes\tDeepestLevel");
Note: See TracChangeset for help on using the changeset viewer.