-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
d30bde7
commit 365f80e
Showing
4 changed files
with
78 additions
and
4 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
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
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 |
---|---|---|
@@ -0,0 +1,30 @@ | ||
/* ============================================================================ | ||
* tubex-lib - DataLoader_Redermor class | ||
* ============================================================================ | ||
* Copyright : Copyright 2017 Simon Rohou | ||
* License : This program is distributed under the terms of | ||
* the GNU Lesser General Public License (LGPL). | ||
* | ||
* Author(s) : Simon Rohou | ||
* Bug fixes : - | ||
* Created : 2018 | ||
* ---------------------------------------------------------------------------- */ | ||
|
||
#include "tubex_DataLoader_Redermor.h" | ||
|
||
using namespace std; | ||
using namespace ibex; | ||
|
||
namespace tubex | ||
{ | ||
DataLoader_Redermor::DataLoader_Redermor(const string& file_path) | ||
: DataLoader(file_path) | ||
{ | ||
|
||
} | ||
|
||
bool DataLoader_Redermor::loadData(TubeVector& x, const Interval& domain) | ||
{ | ||
|
||
} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
/* ============================================================================ | ||
* tubex-lib - DataLoader_Redermor class | ||
* ============================================================================ | ||
* Copyright : Copyright 2017 Simon Rohou | ||
* License : This program is distributed under the terms of | ||
* the GNU Lesser General Public License (LGPL). | ||
* | ||
* Author(s) : Simon Rohou | ||
* Bug fixes : - | ||
* Created : 2018 | ||
* ---------------------------------------------------------------------------- */ | ||
|
||
#ifndef __TUBEX_DATALOADER_REDERMOR_H__ | ||
#define __TUBEX_DATALOADER_REDERMOR_H__ | ||
|
||
#include "ibex_Interval.h" | ||
#include "tubex_DataLoader.h" | ||
|
||
namespace tubex | ||
{ | ||
class DataLoader_Redermor : DataLoader | ||
{ | ||
public: | ||
|
||
DataLoader_Redermor(const std::string& file_path); | ||
bool loadData(TubeVector& x, const ibex::Interval& domain = ibex::Interval::ALL_REALS); | ||
|
||
protected: | ||
|
||
}; | ||
} | ||
|
||
#endif |