You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
339 B
20 lines
339 B
/*
|
|
* read_tra_file.h
|
|
*
|
|
* Created on: 15.08.2012
|
|
* Author: Thomas Heinemann
|
|
*/
|
|
|
|
#ifndef READ_TRA_FILE_H_
|
|
#define READ_TRA_FILE_H_
|
|
#include "src/sparse/static_sparse_matrix.h"
|
|
namespace mrmc{
|
|
namespace parser {
|
|
|
|
mrmc::sparse::StaticSparseMatrix<double> * read_tra_file(const char * filename);
|
|
|
|
}
|
|
}
|
|
|
|
|
|
#endif /* READ_TRA_FILE_H_ */
|