-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
#ifndef chicago_default_h_ | ||
#define chicago_default_h_ | ||
#ifndef linecircle_default_h_ | ||
#define linecircle_default_h_ | ||
// Include this last of all in user app | ||
|
||
#include "minus.h" | ||
#include "chicago14a-default-data.h" // default start system etc | ||
#include "linecircle-default-data.h" // default start system etc | ||
|
||
// Convenience types to use Minus and the Chicago problem | ||
typedef MiNuS::minus_core<MiNuS::chicago> M; | ||
typedef MiNuS::minus_io<MiNuS::chicago> io; | ||
typedef MiNuS::minus_io_14a<MiNuS::chicago> io14; | ||
typedef MiNuS::minus_data<MiNuS::chicago, double> data; | ||
extern template struct MiNuS::minus_data<MiNuS::chicago, double>; | ||
// Convenience types to use Minus and the linecircle problem | ||
typedef MiNuS::minus_core<MiNuS::linecircle> M; | ||
typedef MiNuS::minus_io<MiNuS::linecircle> io; | ||
typedef MiNuS::minus_io_14a<MiNuS::linecircle> io14; | ||
typedef MiNuS::minus_data<MiNuS::linecircle, double> data; | ||
extern template struct MiNuS::minus_data<MiNuS::linecircle, double>; | ||
|
||
#endif // chicago_default_h_ | ||
#endif // linecircle_default_h_ |