-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
43 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
/** | ||
* NOTE: Input automata, that are of type `NFA-bits` are mintermized! | ||
* - If you want to skip mintermization, set the variable `MINTERMIZE_AUTOMATA` below to `false` | ||
*/ | ||
|
||
#include "utils/utils.hh" | ||
#include "mata/nfa/nfa.hh" | ||
|
||
#include <iostream> | ||
#include <iomanip> | ||
#include <chrono> | ||
#include <string> | ||
|
||
using namespace mata::nfa; | ||
|
||
const bool MINTERMIZE_AUTOMATA = false; | ||
|
||
int main(int argc, char *argv[]) | ||
{ | ||
if (argc != 2) { | ||
std::cerr << "Input file missing\n"; | ||
return EXIT_FAILURE; | ||
} | ||
|
||
std::string filename = argv[1]; | ||
|
||
Nfa aut; | ||
mata::OnTheFlyAlphabet alphabet{}; | ||
if (load_automaton(filename, aut, alphabet, MINTERMIZE_AUTOMATA) != EXIT_SUCCESS) { | ||
return EXIT_FAILURE; | ||
} | ||
|
||
// Setting precision of the times to fixed points and 4 decimal places | ||
std::cout << std::fixed << std::setprecision(4); | ||
|
||
TIME_BEGIN(tmp); | ||
|
||
reduce(aut, nullptr, {{"algorithm","testing"}}); | ||
|
||
TIME_END(tmp); | ||
|
||
return EXIT_SUCCESS; | ||
} |