The CyMeAlg Software (Release 0.01)
|
This is a simple program for testing selected algorithms for the computation of the minimum cycle mean of a directed graph. More...
#include <iostream>
#include <fstream>
#include "chomp/system/config.h"
#include "chomp/system/textfile.h"
#include "chomp/system/timeused.h"
#include "chomp/system/arg.h"
#include "chomp/struct/digraph.h"
#include "cymealg.h"
Go to the source code of this file.
Functions | |
void | cymealgTest (const char *filename, bool runKarp, bool runKarpRnd, bool runMem, bool runMemRnd, bool runOld, bool runOldRnd) |
int | main (int argc, char *argv []) |
The main procedure of the program. More... | |
Variables | |
const char * | title |
The title of the program and licensing information. More... | |
const char * | helpinfo |
Brief help information on the program's usage. More... | |
This is a simple program for testing selected algorithms for the computation of the minimum cycle mean of a directed graph.
It reads the definition of a weighted graph from a text input file and measures the time of the computation of the minimum cycle mean using different algorithms.
Definition in file cymealgtest.cpp.