Changeset 430bd7f7e9 in tspsg for src/tspmodel.h


Ignore:
Timestamp:
Jul 31, 2009, 8:23:07 PM (15 years ago)
Author:
Oleksii Serdiuk
Branches:
0.1.3.145-beta1-symbian, 0.1.4.170-beta2-bb10, appveyor, imgbot, master, readme
Children:
ec54b4490b
Parents:
b5c9bcb585
Message:

+ Finished solving algorithm (needs thorough testing).
+ Solution can be saved to HTML or OpenDocument? format.
+ Added VERSIONINFO resource for windows builds.

  • Updated translations to have unified terminology everywhere.

NB: This will be the first public alpha build.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/tspmodel.h

    rb5c9bcb585 r430bd7f7e9  
    11/*
    2  *  TSPSG - TSP Solver and Generator
     2 *  TSPSG: TSP Solver and Generator
    33 *  Copyright (C) 2007-2009 Lёppa <contacts[at]oleksii[dot]name>
    44 *
     
    4848private:
    4949        QSettings *settings;
    50         double table[MAX_CITIES][MAX_CITIES];
     50        QVector<QVector<double>> table;
    5151        quint16 nCities;
    5252        int rand(int, int) const;
    53         bool loadError(QDataStream::Status) const;
     53        bool loadError(QDataStream::Status);
    5454        void loadZKT(QDataStream *);
    5555        void loadTSPT(QDataStream *);
Note: See TracChangeset for help on using the changeset viewer.