Brute force fail

This commit is contained in:
Guilherme Werner
2023-06-17 16:10:47 -03:00
parent 948198a69b
commit 52f777e625
3 changed files with 47 additions and 2 deletions

View File

@ -11,8 +11,11 @@ int main()
g1->InsertD(2, 0);
g1->InsertD(2, 3);
cout << "-- TRANSITIVE CLOSURE --\n\n";
g1->TransitiveClosure();
cout << "-- PERMUTATIONS --\n\n";
g1->Permute();
//cout << "-- TRANSITIVE CLOSURE --\n\n";
//g1->TransitiveClosure();
return 0;
}