Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/01/12 15:15:22 (12 years ago)
Author:
abeham
Message:

#1614

  • Fixed plugin dependencies
  • Updated GQAP view
  • Changed instances infrastructure
    • Changed interface types into classes
    • Removed the library specific instance classes
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/GeneralizedQAP/UnitTests/TSPLIBInstanceProviderTest.cs

    r7505 r7538  
    3636      foreach (var id in target.GetInstanceDescriptors()) {
    3737        try {
    38           target.GetInstance(id);
     38          target.LoadInstance(id);
    3939        } catch (Exception ex) {
    4040          erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
     
    5353      foreach (var id in target.GetInstanceDescriptors()) {
    5454        try {
    55           target.GetInstance(id);
     55          target.LoadInstance(id);
    5656        } catch (Exception ex) {
    5757          erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
     
    7070      foreach (var id in target.GetInstanceDescriptors()) {
    7171        try {
    72           target.GetInstance(id);
     72          target.LoadInstance(id);
    7373        } catch (Exception ex) {
    7474          erroneousInstances.AppendLine(id.Name + ": " + ex.Message);
Note: See TracChangeset for help on using the changeset viewer.