Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
07/14/16 15:08:18 (8 years ago)
Author:
mkommend
Message:

#1087: Moved Pareto fronts to subfolders in the according test functions folder and changed PFStore.

File:
1 moved

Legend:

Unmodified
Added
Removed
  • branches/HeuristicLab.Problems.MultiObjectiveTestFunctions/HeuristicLab.Problems.MultiObjectiveTestFunctions/3.3/Testfunctions/ParetoFrontStore.cs

    r14068 r14069  
    2727
    2828namespace HeuristicLab.Problems.MultiObjectiveTestFunctions {
    29   class PFStore {
    30     public static IEnumerable<double[]> get(String filename) {
     29  internal class ParetoFrontStore {
     30    internal static IEnumerable<double[]> GetParetoFront(String filename) {
    3131      List<double[]> data = new List<double[]>();
    3232      var assembly = Assembly.GetExecutingAssembly();
    33       String ressourcename = typeof(PFStore).Namespace + ".EmbeddedRessources." + filename + ".pf";
     33      String ressourcename = typeof(ParetoFrontStore).Namespace + ".TestFunctions." + filename + ".pf";
    3434
    3535      //check if file is listed
Note: See TracChangeset for help on using the changeset viewer.