-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.cpp
More file actions
32 lines (26 loc) · 695 Bytes
/
main.cpp
File metadata and controls
32 lines (26 loc) · 695 Bytes
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
32
#include <iostream>
#include <set>
#include "include/Definitions.h"
#include "include/VarAnalysis.h"
#include "include/Examples.h"
int main()
{
Term constant_y(lambda_x_xy, map_lambda_x_xy);
std::string constant_y_string = constant_y.getAsString();
std::cout << constant_y_string << std::endl;
// VarAnalysis va(constant_y);
// Vars res = va.getResults();
// std::cout << "FV={";
// for (const char &var : res.first)
// {
// std::cout << var;
// }
// std::cout << "}, ";
// std::cout << "BV={";
// for (const char &var : res.second)
// {
// std::cout << var;
// }
// std::cout << "}" << std::endl;
return 0;
}