8#ifndef REXPORTGRAPH_H_INCLUDED
9#define REXPORTGRAPH_H_INCLUDED
27 Rcpp::class_<Graph::FMTGraphStats>(
"FMTgraphstats",
"@DocString(FMTGraphStats)")
28 .constructor(
"@DocString(FMTGraphStats())")
29 .method(
"str", &Graph::FMTGraphStats::operator std::string,
30 "@DocString(FMTGraphStats::operator std::string)")
32 "@DocString(FMTGraphStats::cols)")
34 "@DocString(FMTGraphStats::rows)")
36 "@DocString(FMTGraphStats::vertices)")
38 "@DocString(FMTGraphStats::edges)")
40 "@DocString(FMTGraphStats::transfer_rows)")
42 "@DocString(FMTGraphStats::output_rows)")
44 "@DocString(FMTGraphStats::output_cols)");
RCPP_EXPOSED_AS(Graph::FMTGraphStats)
RCPP_EXPOSED_WRAP(Graph::FMTGraphStats)
RCPP_EXPOSED_ENUM_NODECL(Core::FMToutputlevel)
Statistics about a FMTGraph and its FMTLpSolver: their size, elements and type of elements.
Definition: FMTGraphStats.h:28
int rows
Number of rows in the matrix of FMTLpSolver.
Definition: FMTGraphStats.h:54
int output_cols
Number of output cols in the FMTLpSolver.
Definition: FMTGraphStats.h:69
int transfer_rows
Number of area transfer rows in the FMTLpSolver.
Definition: FMTGraphStats.h:63
int cols
Number of columns in the matrix of FMTLpSolver.
Definition: FMTGraphStats.h:51
int edges
Number of edges in the FMTGraph.
Definition: FMTGraphStats.h:60
int vertices
Number of vertices in the FMTGraph.
Definition: FMTGraphStats.h:57
int output_rows
Number of output rows in the FMTLpSolver.
Definition: FMTGraphStats.h:66
FMToutputlevel
Enumerator describing the level of detail of an output (standard, total only, development).
Definition: FMTutility.h:22
Definition: RexportCore.h:153
void exportGraph()
Definition: RexportGraph.h:25