[65] | 1 | /*! |
---|
[67] | 2 | * \file tspsolver.h |
---|
[65] | 3 | * \author Copyright © 2007-2009 Lёppa <contacts[at]oleksii[dot]name> |
---|
[12] | 4 | * |
---|
| 5 | * $Id: tspsolver.h 74 2009-12-16 22:22:05Z laleppa $ |
---|
| 6 | * $URL: https://tspsg.svn.sourceforge.net/svnroot/tspsg/trunk/src/tspsolver.h $ |
---|
| 7 | * |
---|
[67] | 8 | * \brief Defines #tMatrix typedef, sStep struct and CTSPSolver class. |
---|
| 9 | * |
---|
[65] | 10 | * <b>TSPSG: TSP Solver and Generator</b> |
---|
| 11 | * |
---|
[12] | 12 | * This file is part of TSPSG. |
---|
| 13 | * |
---|
| 14 | * TSPSG is free software: you can redistribute it and/or modify |
---|
| 15 | * it under the terms of the GNU General Public License as published by |
---|
| 16 | * the Free Software Foundation, either version 3 of the License, or |
---|
| 17 | * (at your option) any later version. |
---|
| 18 | * |
---|
| 19 | * TSPSG is distributed in the hope that it will be useful, |
---|
| 20 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 21 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 22 | * GNU General Public License for more details. |
---|
| 23 | * |
---|
| 24 | * You should have received a copy of the GNU General Public License |
---|
| 25 | * along with TSPSG. If not, see <http://www.gnu.org/licenses/>. |
---|
| 26 | */ |
---|
| 27 | |
---|
| 28 | #ifndef TSPSOLVER_H |
---|
| 29 | #define TSPSOLVER_H |
---|
| 30 | |
---|
[31] | 31 | #include "globals.h" |
---|
[12] | 32 | |
---|
[64] | 33 | #include "tspmodel.h" |
---|
| 34 | |
---|
[65] | 35 | //! A matrix of city-to-city travel costs. |
---|
[74] | 36 | typedef QList<QList<double> > TMatrix; |
---|
[13] | 37 | |
---|
[65] | 38 | /*! |
---|
[74] | 39 | * \brief A structure that represents a candidate for branching. |
---|
| 40 | */ |
---|
| 41 | struct TCandidate { |
---|
| 42 | int nRow; //!< A zero-based row number of the candidate |
---|
| 43 | int nCol; //!< A zero-based column number of the candidate |
---|
| 44 | |
---|
| 45 | //! Assigns default values |
---|
| 46 | TCandidate() { |
---|
| 47 | nCol = nRow = -1; |
---|
| 48 | } |
---|
| 49 | //! An operator == implementation |
---|
| 50 | bool operator ==(const TCandidate &cand) const { |
---|
| 51 | return ((cand.nRow == nRow) && (cand.nCol == nCol)); |
---|
| 52 | } |
---|
| 53 | }; |
---|
| 54 | |
---|
| 55 | /*! |
---|
[65] | 56 | * \brief This structure represents one step of solving. |
---|
| 57 | * |
---|
| 58 | * A tree of such elements will represent the solving process. |
---|
| 59 | */ |
---|
[74] | 60 | struct SStep { |
---|
| 61 | TMatrix matrix; //!< This step's matrix |
---|
[65] | 62 | double price; //!< The price of travel to this step |
---|
[74] | 63 | TCandidate candidate; //!< A candiadate for branching in the current matrix |
---|
| 64 | QList<TCandidate> alts; //!< A list of alternative branching candidates |
---|
| 65 | SStep *plNode; //!< Pointer to the left branch step |
---|
| 66 | SStep *prNode; //!< Pointer to the right branch step |
---|
[65] | 67 | |
---|
| 68 | //! Assigns default values |
---|
[74] | 69 | SStep() { |
---|
| 70 | price = -1; |
---|
[65] | 71 | plNode = prNode = NULL; |
---|
| 72 | } |
---|
[12] | 73 | }; |
---|
| 74 | |
---|
[67] | 75 | /*! |
---|
| 76 | * \brief This class solves Travelling Salesman Problem task. |
---|
| 77 | * \author Copyright © 2007-2009 Lёppa <contacts[at]oleksii[dot]name> |
---|
| 78 | * |
---|
| 79 | * \todo TODO: Deletion of solution tree on destroy and cleanup. |
---|
| 80 | */ |
---|
[12] | 81 | class CTSPSolver |
---|
| 82 | { |
---|
[42] | 83 | Q_DECLARE_TR_FUNCTIONS(CTSPSolver) |
---|
| 84 | |
---|
[12] | 85 | public: |
---|
| 86 | CTSPSolver(); |
---|
[60] | 87 | QString getSortedPath() const; |
---|
[67] | 88 | static QString getVersionId(); |
---|
[60] | 89 | bool isOptimal() const; |
---|
[74] | 90 | SStep *solve(int numCities, TMatrix task, QWidget *parent = 0); |
---|
| 91 | ~CTSPSolver(); |
---|
[42] | 92 | |
---|
[13] | 93 | private: |
---|
[60] | 94 | bool mayNotBeOptimal; |
---|
[13] | 95 | int nCities; |
---|
[74] | 96 | SStep *root; |
---|
[42] | 97 | QHash<int,int> route; |
---|
[50] | 98 | // QHash<int,int> forbidden; |
---|
[67] | 99 | |
---|
[74] | 100 | double align(TMatrix &matrix); |
---|
[42] | 101 | void cleanup(); |
---|
[74] | 102 | void deleteNode(SStep *node); |
---|
| 103 | QList<TCandidate> findCandidate(const TMatrix &matrix, int &nRow, int &nCol) const; |
---|
| 104 | double findMinInCol(int nCol, const TMatrix &matrix, int exr = -1) const; |
---|
| 105 | double findMinInRow(int nRow, const TMatrix &matrix, int exc = -1) const; |
---|
[71] | 106 | bool hasSubCycles(int nRow, int nCol) const; |
---|
[74] | 107 | void subCol(TMatrix &matrix, int nCol, double val); |
---|
| 108 | void subRow(TMatrix &matrix, int nRow, double val); |
---|
[12] | 109 | }; |
---|
| 110 | |
---|
| 111 | #endif // TSPSOLVER_H |
---|