Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
06/19/12 13:17:29 (12 years ago)
Author:
ascheibe
Message:

#1722 fixed more licensing information and source formatting

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/sources/HeuristicLab.Problems.Instances.VehicleRouting/3.4/GoldenFormat/GoldenParser.cs

    r7887 r8053  
    11#region License Information
    22/* HeuristicLab
    3  * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
     3 * Copyright (C) 2002-2012 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
    44 *
    55 * This file is part of HeuristicLab.
     
    2121
    2222using System;
    23 using System.Globalization;
    2423using System.IO;
    2524
     
    2928    private Stream stream;
    3029    private string problemName;
    31    
     30
    3231    #region Inner Enum TSPLIBEdgeWeightType
    3332    public enum GoldenEdgeWeightType {
     
    125124    }
    126125
    127     public GoldenParser(string file): this() {
     126    public GoldenParser(string file)
     127      : this() {
    128128      this.file = file;
    129129    }
    130130
    131131    public GoldenParser(Stream stream)
    132        : this() {
     132      : this() {
    133133      this.stream = stream;
    134134    }
Note: See TracChangeset for help on using the changeset viewer.