Changeset 17353 for branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/JCInstantiator.cs
- Timestamp:
- 11/19/19 16:33:01 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/3026_IntegrationIntoSymSpace/HeuristicLab.JsonInterface/JCInstantiator.cs
r17349 r17353 14 14 15 15 namespace HeuristicLab.JsonInterface { 16 /// <summary> 17 /// Static class to instantiate an IAlgorithm object with a json interface template and config. 18 /// </summary> 16 19 public static class JCInstantiator { 17 20 private struct InstData { … … 23 26 } 24 27 28 /// <summary> 29 /// Instantiate an IAlgorithm object with a template and config. 30 /// </summary> 31 /// <param name="templateFile">Template file (json), generated with JCGenerator.</param> 32 /// <param name="configFile">Config file (json) for the template.</param> 33 /// <returns>confugrated IAlgorithm object</returns> 25 34 public static IAlgorithm Instantiate(string templateFile, string configFile = "") { 26 35 InstData instData = new InstData() {
Note: See TracChangeset
for help on using the changeset viewer.