Neodroid  0.2.0
Machine Learning Environment Prototyping Tool
IConfigurable.cs
Go to the documentation of this file.
2 
3 namespace droid.Runtime.Interfaces {
4  public interface IConfigurable : IRegisterable {
5  void UpdateCurrentConfiguration();
6  void ApplyConfiguration(IConfigurableConfiguration configuration);
7  void EnvironmentReset();
8  Configuration[] SampleConfigurations();
9 
10  bool SampleRandom { get; set; }
11 
12  void PostEnvironmentSetup();
13  void Tick();
14  }
15 }