/*************************************************************************************
* *
* ***** OpenThermo ***** *
* Calculation of thermodynamic functions from molecular data *
* Copyright 2008 Konstantin Tokarev <annulen@users.sourceforge.net> *
* and others *
* *
*************************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License. See COPYING for *
* more details *
* *
*************************************************************************************
* Module name : matrix.h *
* Author : Tokarev. K *
* Last modification : 2008/08/10 *
* Description : Interface to Newmat library of R. Davies *
* *
*************************************************************************************/
#ifndef MATRIX_H
#define MATRIX_H
// Override slash incompatibility
#ifdef WINDOWS
#include "newmat\newmatap.h"
#include "newmat\newmatio.h"
#else
#include "newmat/newmatap.h"
#include "newmat/newmatio.h"
#endif
#endif /* MATRIX_H */