#ifndef __COGAPS_GAPS_RUNNER_H__ #define __COGAPS_GAPS_RUNNER_H__ #include "GapsResult.h" #include "GapsParameters.h" #include "data_structures/Matrix.h" #include "math/Random.h" // these two functions are the top-level functions exposed to the C++ // code that is being wrapped by any given language namespace gaps { // data stored in matrix GapsResult run(const Matrix &data, GapsParameters ¶ms, const Matrix &uncertainty, GapsRandomState *randState); // data stored in file GapsResult run(const std::string &data, GapsParameters ¶ms, const std::string &uncertainty, GapsRandomState *randState); }; #endif // __COGAPS_GAPS_RUNNER_H__