Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
10/27/09 11:51:31 (15 years ago)
Author:
mkommend
Message:

added possibility to reload specific models and added readonly connection to HeuristicLab.Modeling (ticket #792)

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Modeling.Database/3.2/IModelingDatabase.cs

    r2389 r2451  
    2828namespace HeuristicLab.Modeling.Database {
    2929  public interface IModelingDatabase {
     30    bool ReadOnly { get; set; }
    3031    void Connect();
    3132    void EmptyDatabase();
     
    3334
    3435    IEnumerable<IModel> GetAllModels();
     36    IEnumerable<int> GetAllModelIds();
    3537    IEnumerable<IVariable> GetAllVariables();
    3638    IEnumerable<IResult> GetAllResults();
     
    5355    IVariable GetVariable(string variableName);
    5456
     57    IModel GetModel(int id);
    5558    IPredictor GetModelPredictor(IModel model);
    5659    void PersistPredictor(IModel model, IPredictor predictor);
Note: See TracChangeset for help on using the changeset viewer.