More cleanup.

This commit is contained in:
jgoppert 2015-11-05 12:34:14 -05:00
parent fd64e7e93a
commit 537c683d58
11 changed files with 20 additions and 10 deletions

View File

@ -52,7 +52,7 @@ if (COVERALLS)
add_custom_target(coverage
COMMAND lcov --capture --directory . --output-file coverage.info
COMMAND genhtml coverage.info --output-directory out
COMMAND firefox out/index.html
COMMAND x-www-browser out/index.html
WORKING_DIRECTORY ${CMAKE_BUILD_DIR}
DEPENDS coveralls
)

View File

@ -7,3 +7,5 @@
#include "Euler.hpp"
#include "Dcm.hpp"
#include "Scalar.hpp"
#include "filter.hpp"

View File

@ -1,7 +1,7 @@
#include <assert.h>
#include <stdio.h>
#include "filter.hpp"
#include "matrix.hpp"
using namespace matrix;

View File

@ -1,7 +1,8 @@
#include "SquareMatrix.hpp"
#include <assert.h>
#include <stdio.h>
#include "matrix.hpp"
using namespace matrix;
static const size_t n_large = 50;

View File

@ -1,6 +1,7 @@
#include "Matrix.hpp"
#include <assert.h>
#include "matrix.hpp"
using namespace matrix;
template class Matrix<float, 3, 3>;

View File

@ -1,7 +1,8 @@
#include "Matrix.hpp"
#include <assert.h>
#include <stdio.h>
#include "matrix.hpp"
using namespace matrix;
int main()

View File

@ -1,7 +1,8 @@
#include "Matrix.hpp"
#include <assert.h>
#include <stdio.h>
#include "matrix.hpp"
using namespace matrix;
int main()

View File

@ -1,6 +1,7 @@
#include "Matrix.hpp"
#include <assert.h>
#include "matrix.hpp"
using namespace matrix;
template class Matrix<float, 3, 3>;

View File

@ -1,7 +1,8 @@
#include "Vector.hpp"
#include <assert.h>
#include <stdio.h>
#include "matrix.hpp"
using namespace matrix;
template class Vector<float, 5>;

View File

@ -1,7 +1,8 @@
#include "Vector3.hpp"
#include <assert.h>
#include <stdio.h>
#include "matrix.hpp"
using namespace matrix;
template class Vector<float, 3>;

View File

@ -1,6 +1,7 @@
#include "Vector3.hpp"
#include <assert.h>
#include "matrix.hpp"
using namespace matrix;
template class Vector<float, 3>;