Free cookie consent management tool by TermsFeed Policy Generator

source: branches/HeuristicLab.Problems.GrammaticalOptimization/DynamicDataDisplay/Charts/Axes/DateTime/DifferenceIn.cs @ 12503

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

#2283 added GUI and charts; fixed MCTS

File size: 343 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5
6namespace Microsoft.Research.DynamicDataDisplay.Charts
7{
8  public enum DifferenceIn
9  {
10    Biggest = Year,
11
12    Year = 6,
13    Month = 5,
14    Day = 4,
15    Hour = 3,
16    Minute = 2,
17    Second = 1,
18    Millisecond = 0,
19
20    Smallest = Millisecond
21  }
22}
Note: See TracBrowser for help on using the repository browser.