|
|
||||||
|
#include "libfaudes.h" Go to the source code of this file.
Detailed Description
Tutorial, example plugin. This tutorial demonstrates how to organize tutorials in plugins. /** @file pex_tutorial.cpp
Tutorial, example plugin. This tutorial demonstrates
how to organize tutorials in plugins.
@ingroup Tutorials
@include pex_tutorial.cpp
*/
#include "libfaudes.h"
// make the faudes namespace available to our program
using namespace faudes;
/** Run the tutorial */
int main() {
// read generator from file
Generator gen("data/g_notacc.gen");
// run algorithm
AlternativeAccessible(gen);
// write result
gen.Write("tmp_altacc.gen");
// Record test case
FAUDES_TEST_DUMP("test alt access",gen)
// Validate result
// done
return 0;
}
void AlternativeAccessible(Generator &rGen) Definition: pex_altaccess.cpp:12 Definition: cfl_agenerator.h:43 Definition in file pex_tutorial.cpp. Function Documentation◆ main()
Run the tutorial Definition at line 19 of file pex_tutorial.cpp. libFAUDES 2.33b --- 2025.05.07 --- c++ api documentaion by doxygen |