Compare commits

..

No commits in common. "df936f747d6884ecac870fc8197586aabc11e3c8" and "b8325bb573842133998653a375e45f435ea3683c" have entirely different histories.

3 changed files with 10 additions and 17 deletions

View File

@ -1,10 +1,8 @@
// _ // This is the .cpp file you will edit and turn in.
// | |_ ___ _ _ _ __ ___ _ __ _ __ // We have provided a skeleton for you,
// | __/ _ \| | | | '__/ __| '_ \| '_ \ // but you must finish it as described in the spec.
// | || (_) | |_| | | | (__| |_) | |_) | // Also remove these comments here and add your own.
// \__\___/ \__,_|_|(_)___| .__/| .__/ // TODO: remove this comment header
// |_| |_|
// Author: Love Billenius <lovbi127@student.liu.se>
#include "Tour.h" #include "Tour.h"
#include "Node.h" #include "Node.h"

View File

@ -1,11 +1,8 @@
// _ _ // This is the .h file you will edit and turn in.
// | |_ ___ _ _ _ __| |__ // We have provided a skeleton for you,
// | __/ _ \| | | | '__| '_ \ // but you must finish it as described in the spec.
// | || (_) | |_| | | _| | | | // Also remove these comments here and add your own, as well as on the members.
// \__\___/ \__,_|_|(_)_| |_| // TODO: remove this comment header
//
// Author: Love Billenius <lovbi127@student.liu.se>
#ifndef TOUR_H #ifndef TOUR_H
#define TOUR_H #define TOUR_H

View File

@ -20,8 +20,6 @@ int main(int argc, char *argv[]) {
string filename = "tsp10.txt"; string filename = "tsp10.txt";
#ifdef __APPLE__ #ifdef __APPLE__
// On macOS the resources are copeied to build/<release-target>/
// whilst, the running binary is under build/<release-target>/TSP.app/Contents/MacOS/
filename.insert(0, "../../../"); filename.insert(0, "../../../");
#endif #endif