Free cookie consent management tool by TermsFeed Policy Generator

source: branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/Constants.cs @ 17330

Last change on this file since 17330 was 17330, checked in by dpiringe, 5 years ago

#3026

  • changed the access modifiers in Constants from public to internal
  • added comments in JCGenerator
  • the config file for JCInstantiator is now optional
  • added Runner.cs (forgot last commit)
File size: 748 bytes
Line 
1using System;
2using System.Collections.Generic;
3using System.Linq;
4using System.Text;
5using System.Threading.Tasks;
6
7namespace HeuristicLab.JsonInterface {
8  internal class Constants {
9
10    internal const string Metadata = "Metadata";
11    internal const string Algorithm = "Algorithm";
12    internal const string Problem = "Problem";
13    internal const string Objects = "Objects";
14    internal const string Types = "Types";
15    internal const string StaticParameters = "StaticParameters";
16    internal const string FreeParameters = "FreeParameters";
17
18    internal const string Template = @"{
19      'Metadata': {
20        'Algorithm':'',
21        'Problem':''
22      },
23      'Objects': [],
24      'Types': {}
25    }";
26  }
27}
Note: See TracBrowser for help on using the repository browser.