diff options
Diffstat (limited to 'labb7/src')
| -rw-r--r-- | labb7/src/brute.cpp | 2 | ||||
| -rw-r--r-- | labb7/src/fast.cpp | 3 |
2 files changed, 3 insertions, 2 deletions
diff --git a/labb7/src/brute.cpp b/labb7/src/brute.cpp index ffddd0f..a9db527 100644 --- a/labb7/src/brute.cpp +++ b/labb7/src/brute.cpp @@ -32,7 +32,7 @@ int main(int argc, char *argv[]) { QApplication a(argc, argv);
// open file
- string filename = "input100.txt";
+ string filename = "grid6x6.txt";
ifstream input;
input.open(filename);
diff --git a/labb7/src/fast.cpp b/labb7/src/fast.cpp index e32bb19..e0fcd0e 100644 --- a/labb7/src/fast.cpp +++ b/labb7/src/fast.cpp @@ -28,7 +28,8 @@ int main(int argc, char *argv[]) { QApplication a(argc, argv); // open file - string filename = "input400.txt"; + string filename = "grid6x6.txt"; + ifstream input; input.open(filename); |
