Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/Common/Auxiliary/SizeHelper.cs @ 13808

Last change on this file since 13808 was 12503, checked in by aballeit, 9 years ago

#2283 added GUI and charts; fixed MCTS

File size: 357 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Windows;
6
7namespace Microsoft.Research.DynamicDataDisplay.Common.Auxiliary
8{
9  internal static class SizeHelper
10  {
11    public static Size CreateInfiniteSize()
12    {
13      return new Size(Double.PositiveInfinity, Double.PositiveInfinity);
14    }
15  }
16}
Note: See TracBrowser for help on using the repository browser.