-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathResult.hpp
31 lines (27 loc) · 859 Bytes
/
Result.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
//
// Result.hpp
// Trabalho IA
//
// Created by Yan Mendes on 17/05/17.
// Copyright © 2017 Yan Mendes. All rights reserved.
//
#ifndef Result_hpp
#define Result_hpp
class Result{
public:
long long int rooms, doors, treeHeight;
string instance, algorithm;
double averageExpandedStates, elapsedTime;
bool success;
Result(long long int rooms, long long int doors, long long int treeHeight, string instance, string algorithm, double averageExpandedStates, double elapsedTime, bool success){
this->rooms = rooms;
this->doors = doors;
this->treeHeight = treeHeight;
this->instance = instance;
this->algorithm = algorithm;
this->averageExpandedStates = averageExpandedStates;
this->elapsedTime = elapsedTime;
this->success = success;
}
};
#endif /* Result_hpp */