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.
38 lines
816 B
38 lines
816 B
//////////////////////////////////////////////////////////////////// |
|
// Common.h |
|
// |
|
// Copyright 2007 cDc@seacave |
|
// Distributed under the Boost Software License, Version 1.0 |
|
// (See http://www.boost.org/LICENSE_1_0.txt) |
|
|
|
#ifndef __MATH_COMMON_H__ |
|
#define __MATH_COMMON_H__ |
|
|
|
|
|
// I N C L U D E S ///////////////////////////////////////////////// |
|
|
|
#if defined(Math_EXPORTS) && !defined(Common_EXPORTS) |
|
#define Common_EXPORTS |
|
#endif |
|
|
|
#include "../Common/Common.h" |
|
|
|
#ifndef MATH_API |
|
#define MATH_API GENERAL_API |
|
#endif |
|
#ifndef MATH_TPL |
|
#define MATH_TPL GENERAL_TPL |
|
#endif |
|
|
|
#include "LMFit/lmmin.h" |
|
#include "RobustNorms.h" |
|
|
|
|
|
// D E F I N E S /////////////////////////////////////////////////// |
|
|
|
|
|
// P R O T O T Y P E S ///////////////////////////////////////////// |
|
|
|
using namespace SEACAVE; |
|
|
|
#endif // __MATH_COMMON_H__
|
|
|