Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/20/09 11:30:24 (15 years ago)
Author:
gkronber
Message:

Fixed infinite recursion bug in StoreProxy and initialized the ProblemInjector of SVR to an actual ProblemInjector. #635

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.CEDMA.Core/3.3/StoreProxy.cs

    r1529 r1858  
    5656    }
    5757
    58     private void ExecuteSavely(Action a) {
    59       ExecuteSavely(a);
    60     }
    61 
    6258    private T ExecuteSavely<T>(Func<T> a ) {
    6359      try {
     
    7773
    7874    public void Add(Statement statement) {
    79       ExecuteSavely(() => store.Add(statement));
     75      ExecuteSavely(() => { store.Add(statement); return 1.0; });
    8076    }
    8177
Note: See TracChangeset for help on using the changeset viewer.