Zaktualizuj 'Main.cpp'

This commit is contained in:
Szymon Parafiński 2020-06-09 01:51:22 +00:00
parent 2fdd4767d0
commit 25bcbe6751

View File

@ -1,4 +1,4 @@
//Main drzewa decyzyjne 1 + algorytm genetyczny //Main oba drzewa decyzyjne + algorytm genetyczny
#include<iostream> #include<iostream>
#include<stdlib.h> #include<stdlib.h>
@ -70,7 +70,7 @@ void decisionTree(string polecenie) {
int line = 0; int line = 0;
ifstream inFile; ifstream inFile;
inFile.open("pliki/dec.txt"); inFile.open("dec.txt");
if (!inFile) { if (!inFile) {
cout << "Unable to open file"; cout << "Unable to open file";
exit(1); // terminate with error exit(1); // terminate with error
@ -91,7 +91,7 @@ void stanPola(int x, int y) {
//[x][x][0] = 3 - środek i nawóz //[x][x][0] = 3 - środek i nawóz
//[x][x][1] - wartość wzrostu rośliny //[x][x][1] - wartość wzrostu rośliny
polecenie = "python pliki/injectCode.py 1 "; polecenie = "python injectCode.py 1 ";
if (stan[x][y][0] == 0) if (stan[x][y][0] == 0)
polecenie.append("0 0 "); polecenie.append("0 0 ");
@ -1044,7 +1044,7 @@ void testSI1()
void sendState() void sendState()
{ {
ofstream write("pliki/dane.txt"); ofstream write("dane.txt");
for (int i = 1; i < 26; i++) for (int i = 1; i < 26; i++)
{ {
for (int j = 1; j < 26; j++) for (int j = 1; j < 26; j++)
@ -1064,7 +1064,7 @@ void sendState()
} }
void reciveState() void reciveState()
{ {
ifstream read("pliki/decyzje.txt"); ifstream read("decyzje.txt");
if (read.is_open()) if (read.is_open())
{ {
char plant; char plant;