1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2025-06-23 09:12:03 +01:00

Various Eigen types brought into Latan scope

This commit is contained in:
2014-02-26 18:36:29 +00:00
parent fc18acc4bb
commit b8f8d66418
20 changed files with 144 additions and 104 deletions

View File

@ -5,7 +5,7 @@
#include <latan/Dataset.hpp>
#ifndef DEF_NSAMPLE
#define DEF_NSAMPLE 100u
#define DEF_NSAMPLE 100
#endif
using namespace std;
@ -22,7 +22,7 @@ static void usage(const string &cmdName)
int main(int argc, char *argv[])
{
int c;
unsigned int nSample = DEF_NSAMPLE;
Index nSample = DEF_NSAMPLE;
string manFileName, name, outFileName, stateFileName;
char *cmdName;
@ -33,7 +33,7 @@ int main(int argc, char *argv[])
switch (c)
{
case 'n':
nSample = strTo<unsigned int>(optarg);
nSample = strTo<Index>(optarg);
break;
case 'r':
stateFileName = optarg;