1
0
mirror of https://github.com/aportelli/LatAnalyze.git synced 2024-11-10 00:45:36 +00:00

minor code cleaning

This commit is contained in:
Antonin Portelli 2016-03-08 19:39:05 +00:00
parent a435caeecb
commit c6a8a1571b
2 changed files with 2 additions and 12 deletions

View File

@ -19,8 +19,7 @@
#include <LatAnalyze/TabFunction.hpp>
int main(int argc, char* argv[])
int main(void)
{
Latan::DVec xs(3);
xs << -1.0, 0.0, 1.0;
@ -48,4 +47,4 @@ int main(int argc, char* argv[])
double expected = (x > 0.5) ? 1.0 : ((x <= -0.5) ? 1.0 : 0.0);
std::cout << " ( " << expected << " expected)" << std::endl;
}
}
}

View File

@ -21,15 +21,6 @@
#define Latan_Global_hpp_
#include <LatCore/LatCore.hpp>
#include <complex>
#include <fstream>
#include <iostream>
#include <memory>
#include <string>
#include <sstream>
#include <type_traits>
#include <vector>
#include <cstdlib>
#define BEGIN_LATAN_NAMESPACE \
namespace Latan {\