diff --git a/docs/html/_r_e_a_d_m_e___a_g_e_8md.html b/docs/html/_r_e_a_d_m_e___a_g_e_8md.html deleted file mode 100644 index b1cbf441b..000000000 --- a/docs/html/_r_e_a_d_m_e___a_g_e_8md.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - -Tenncor: age/README_AGE.md File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
age/README_AGE.md File Reference
-
-
-
- - - - diff --git a/docs/html/_r_e_a_d_m_e___e_r_r_8md.html b/docs/html/_r_e_a_d_m_e___e_r_r_8md.html deleted file mode 100644 index 6a1c916de..000000000 --- a/docs/html/_r_e_a_d_m_e___e_r_r_8md.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - -Tenncor: err/README_ERR.md File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
err/README_ERR.md File Reference
-
-
-
- - - - diff --git a/docs/html/ade_2test_2common_8hpp.html b/docs/html/ade_2test_2common_8hpp.html deleted file mode 100644 index 71daa6de4..000000000 --- a/docs/html/ade_2test_2common_8hpp.html +++ /dev/null @@ -1,136 +0,0 @@ - - - - - - - -Tenncor: ade/test/common.hpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Macros
-
-
common.hpp File Reference
-
-
-
#include "ade/ileaf.hpp"
-
-Include dependency graph for common.hpp:
-
-
- - - - - - - - - -
-
-This graph shows which files directly or indirectly include this file:
-
-
- - - - - -
-
-

Go to the source code of this file.

- - - - -

-Classes

struct  MockTensor
 
- - - -

-Macros

#define ADE_TEST_COMMON_HPP
 
-

Macro Definition Documentation

- -

◆ ADE_TEST_COMMON_HPP

- -
-
- - - - -
#define ADE_TEST_COMMON_HPP
-
- -
-
-
- - - - diff --git a/docs/html/ade_2test_2common_8hpp__dep__incl.map b/docs/html/ade_2test_2common_8hpp__dep__incl.map deleted file mode 100644 index e08242cd5..000000000 --- a/docs/html/ade_2test_2common_8hpp__dep__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/docs/html/ade_2test_2common_8hpp__dep__incl.md5 b/docs/html/ade_2test_2common_8hpp__dep__incl.md5 deleted file mode 100644 index 2a18a8fc4..000000000 --- a/docs/html/ade_2test_2common_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -05555a7c61077be7a295af4b0eac01c0 \ No newline at end of file diff --git a/docs/html/ade_2test_2common_8hpp__dep__incl.png b/docs/html/ade_2test_2common_8hpp__dep__incl.png deleted file mode 100644 index 33605070d..000000000 Binary files a/docs/html/ade_2test_2common_8hpp__dep__incl.png and /dev/null differ diff --git a/docs/html/ade_2test_2common_8hpp__incl.map b/docs/html/ade_2test_2common_8hpp__incl.map deleted file mode 100644 index 87f9c6d40..000000000 --- a/docs/html/ade_2test_2common_8hpp__incl.map +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/docs/html/ade_2test_2common_8hpp__incl.md5 b/docs/html/ade_2test_2common_8hpp__incl.md5 deleted file mode 100644 index 74409f7cc..000000000 --- a/docs/html/ade_2test_2common_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -87f9b9ab322c68b2f835d7dfd64c9e96 \ No newline at end of file diff --git a/docs/html/ade_2test_2common_8hpp__incl.png b/docs/html/ade_2test_2common_8hpp__incl.png deleted file mode 100644 index e71411c77..000000000 Binary files a/docs/html/ade_2test_2common_8hpp__incl.png and /dev/null differ diff --git a/docs/html/ade_2test_2common_8hpp_source.html b/docs/html/ade_2test_2common_8hpp_source.html deleted file mode 100644 index e70395afa..000000000 --- a/docs/html/ade_2test_2common_8hpp_source.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - -Tenncor: ade/test/common.hpp Source File - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
common.hpp
-
-
-Go to the documentation of this file.
1 #include "ade/ileaf.hpp"
2 
3 #ifndef ADE_TEST_COMMON_HPP
4 #define ADE_TEST_COMMON_HPP
5 
6 struct MockTensor final : public ade::iLeaf
7 {
8  MockTensor (void) = default;
9 
11 
12  const ade::Shape& shape (void) const override
13  {
14  return shape_;
15  }
16 
17  std::string to_string (void) const override
18  {
19  return shape_.to_string();
20  }
21 
22  void* data (void) override
23  {
24  return nullptr;
25  }
26 
27  const void* data (void) const override
28  {
29  return nullptr;
30  }
31 
32  size_t type_code (void) const override
33  {
34  return 0;
35  }
36 
38 };
39 
40 #endif // ADE_TEST_COMMON_HPP
-
std::string to_string(void) const override
Return the string representation of the tensor.
Definition: common.hpp:17
-
std::string to_string(void) const
Return string representation of shape.
Definition: shape.hpp:135
-
Leaf of the graph commonly representing the variable in an equation.
Definition: ileaf.hpp:18
-
Definition: common.hpp:6
-
size_t type_code(void) const override
Return data type encoding.
Definition: common.hpp:32
-
ade::Shape shape_
Definition: common.hpp:37
-
Definition: shape.hpp:49
-
const ade::Shape & shape(void) const override
Return the shape held by this tensor.
Definition: common.hpp:12
-
void * data(void) override
Return pointer to internal data.
Definition: common.hpp:22
-
const void * data(void) const override
Return const pointer to internal data.
Definition: common.hpp:27
-
MockTensor(void)=default
-
MockTensor(ade::Shape shape)
Definition: common.hpp:10
-
- - - - diff --git a/docs/html/ade_2test_2main_8cpp.html b/docs/html/ade_2test_2main_8cpp.html deleted file mode 100644 index 4bbd4612e..000000000 --- a/docs/html/ade_2test_2main_8cpp.html +++ /dev/null @@ -1,124 +0,0 @@ - - - - - - - -Tenncor: ade/test/main.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Functions
-
-
main.cpp File Reference
-
-
-
#include "gtest/gtest.h"
-#include "testutil/common.hpp"
-
-Include dependency graph for main.cpp:
-
-
-
-
- - - -

-Functions

int main (int argc, char **argv)
 
-

Function Documentation

- -

◆ main()

- -
-
- - - - - - - - - - - - - - - - - - -
int main (int argc,
char ** argv 
)
-
- -
-
-
- - - - diff --git a/docs/html/ade_2test_2main_8cpp__incl.map b/docs/html/ade_2test_2main_8cpp__incl.map deleted file mode 100644 index 42b6bec8f..000000000 --- a/docs/html/ade_2test_2main_8cpp__incl.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/ade_2test_2main_8cpp__incl.md5 b/docs/html/ade_2test_2main_8cpp__incl.md5 deleted file mode 100644 index 6e3e9ceb8..000000000 --- a/docs/html/ade_2test_2main_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -e43ba0fc6869cb34b10db57c075fed89 \ No newline at end of file diff --git a/docs/html/ade_2test_2main_8cpp__incl.png b/docs/html/ade_2test_2main_8cpp__incl.png deleted file mode 100644 index b1ca77e78..000000000 Binary files a/docs/html/ade_2test_2main_8cpp__incl.png and /dev/null differ diff --git a/docs/html/age_2test_2main_8cpp.html b/docs/html/age_2test_2main_8cpp.html deleted file mode 100644 index dd0996606..000000000 --- a/docs/html/age_2test_2main_8cpp.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - -Tenncor: age/test/main.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Functions
-
-
main.cpp File Reference
-
-
-
#include "gtest/gtest.h"
-
-Include dependency graph for main.cpp:
-
-
-
-
- - - -

-Functions

int main (int argc, char **argv)
 
-

Function Documentation

- -

◆ main()

- -
-
- - - - - - - - - - - - - - - - - - -
int main (int argc,
char ** argv 
)
-
- -
-
-
- - - - diff --git a/docs/html/age_2test_2main_8cpp__incl.map b/docs/html/age_2test_2main_8cpp__incl.map deleted file mode 100644 index 55f5573b7..000000000 --- a/docs/html/age_2test_2main_8cpp__incl.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/age_2test_2main_8cpp__incl.md5 b/docs/html/age_2test_2main_8cpp__incl.md5 deleted file mode 100644 index b4600bdc7..000000000 --- a/docs/html/age_2test_2main_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -783e596c782441aa120d289fc865efbd \ No newline at end of file diff --git a/docs/html/age_2test_2main_8cpp__incl.png b/docs/html/age_2test_2main_8cpp__incl.png deleted file mode 100644 index 260760e2c..000000000 Binary files a/docs/html/age_2test_2main_8cpp__incl.png and /dev/null differ diff --git a/docs/html/age_2test_2test__grader_8cpp.html b/docs/html/age_2test_2test__grader_8cpp.html deleted file mode 100644 index dc39cc549..000000000 --- a/docs/html/age_2test_2test__grader_8cpp.html +++ /dev/null @@ -1,259 +0,0 @@ - - - - - - - -Tenncor: age/test/test_grader.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Functions
-
-
test_grader.cpp File Reference
-
-
-
#include "gtest/gtest.h"
-#include "age/test/grader_dep.hpp"
-#include "age/generated/grader.hpp"
-
-Include dependency graph for test_grader.cpp:
-
-
- - - - - - - - - - - - - - -
-
- - - - - - - - - - - -

-Functions

 TEST (AGE, RulesData)
 
 TEST (AGE, RulesSum)
 
 TEST (AGE, RulesProd)
 
 TEST (AGE, GraderEminem)
 
 TEST (AGE, GraderKhaled)
 
-

Function Documentation

- -

◆ TEST() [1/5]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (AGE ,
RulesData  
)
-
- -
-
- -

◆ TEST() [2/5]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (AGE ,
RulesSum  
)
-
- -
-
- -

◆ TEST() [3/5]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (AGE ,
RulesProd  
)
-
- -
-
- -

◆ TEST() [4/5]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (AGE ,
GraderEminem  
)
-
- -
-
- -

◆ TEST() [5/5]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (AGE ,
GraderKhaled  
)
-
- -
-
-
- - - - diff --git a/docs/html/age_2test_2test__grader_8cpp__incl.map b/docs/html/age_2test_2test__grader_8cpp__incl.map deleted file mode 100644 index bfa2e195e..000000000 --- a/docs/html/age_2test_2test__grader_8cpp__incl.map +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/docs/html/age_2test_2test__grader_8cpp__incl.md5 b/docs/html/age_2test_2test__grader_8cpp__incl.md5 deleted file mode 100644 index bdd97d74b..000000000 --- a/docs/html/age_2test_2test__grader_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -db348c4c347f6e215f4d62f380333ed1 \ No newline at end of file diff --git a/docs/html/age_2test_2test__grader_8cpp__incl.png b/docs/html/age_2test_2test__grader_8cpp__incl.png deleted file mode 100644 index 1d1344577..000000000 Binary files a/docs/html/age_2test_2test__grader_8cpp__incl.png and /dev/null differ diff --git a/docs/html/agen_8py.html b/docs/html/agen_8py.html deleted file mode 100644 index 8bd19c5a1..000000000 --- a/docs/html/agen_8py.html +++ /dev/null @@ -1,146 +0,0 @@ - - - - - - - -Tenncor: age/agen.py File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Namespaces | -Functions | -Variables
-
-
agen.py File Reference
-
-
- - - - -

-Classes

class  agen.Fields
 
- - - -

-Namespaces

 agen
 
- - - - - - - - - -

-Functions

def agen.parse (cfg_str)
 
def agen.format_include (includes)
 
def agen.make_dir (fields, includes, includepath)
 
def agen.main (cfgpath=None, outpath=None, strip_prefix='')
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Variables

string agen.prog_description = 'Generate c++ glue layer mapping ADE and some data-processing library.'
 
string agen.hdr_postfix = ".hpp"
 
string agen.src_postfix = ".cpp"
 
string agen.api_filename = "api"
 
string agen.codes_filename = "codes"
 
string agen.grader_filename = "grader"
 
string agen.opera_filename = "opmap"
 
string agen.runtime_filename = "runtime"
 
 agen.root
 
 agen.parser = argparse.ArgumentParser(description=prog_description)
 
 agen.dest
 
 agen.nargs
 
 agen.help
 
 agen.default
 
 agen.args = parser.parse_args()
 
 agen.cfgpath
 
 agen.outpath
 
 agen.strip_prefix
 
-
- - - - diff --git a/docs/html/api__tmpl_8py.html b/docs/html/api__tmpl_8py.html deleted file mode 100644 index 8febfb093..000000000 --- a/docs/html/api__tmpl_8py.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - -Tenncor: age/templates/api_tmpl.py File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Namespaces | -Functions | -Variables
-
-
api_tmpl.py File Reference
-
-
- - - - -

-Namespaces

 api_tmpl
 
- - - -

-Functions

def api_tmpl.nullcheck (args)
 
- - - - - - - -

-Variables

 api_tmpl.header = repr.FILE_REPR()
 
 api_tmpl.api_decls
 
 api_tmpl.source = repr.FILE_REPR()
 
-
- - - - diff --git a/docs/html/bwd_2test_2main_8cpp.html b/docs/html/bwd_2test_2main_8cpp.html deleted file mode 100644 index bd04dae71..000000000 --- a/docs/html/bwd_2test_2main_8cpp.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - -Tenncor: bwd/test/main.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Functions
-
-
main.cpp File Reference
-
-
-
#include "gtest/gtest.h"
-
-Include dependency graph for main.cpp:
-
-
-
-
- - - -

-Functions

int main (int argc, char **argv)
 
-

Function Documentation

- -

◆ main()

- -
-
- - - - - - - - - - - - - - - - - - -
int main (int argc,
char ** argv 
)
-
- -
-
-
- - - - diff --git a/docs/html/bwd_2test_2main_8cpp__incl.map b/docs/html/bwd_2test_2main_8cpp__incl.map deleted file mode 100644 index bb084bda4..000000000 --- a/docs/html/bwd_2test_2main_8cpp__incl.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/bwd_2test_2main_8cpp__incl.md5 b/docs/html/bwd_2test_2main_8cpp__incl.md5 deleted file mode 100644 index 6d219f115..000000000 --- a/docs/html/bwd_2test_2main_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -059948173dddc9c76316f607cadcf3c6 \ No newline at end of file diff --git a/docs/html/bwd_2test_2main_8cpp__incl.png b/docs/html/bwd_2test_2main_8cpp__incl.png deleted file mode 100644 index a16c77797..000000000 Binary files a/docs/html/bwd_2test_2main_8cpp__incl.png and /dev/null differ diff --git a/docs/html/bwd_2test_2test__grader_8cpp.html b/docs/html/bwd_2test_2test__grader_8cpp.html deleted file mode 100644 index 2b9142ab8..000000000 --- a/docs/html/bwd_2test_2test__grader_8cpp.html +++ /dev/null @@ -1,449 +0,0 @@ - - - - - - - -Tenncor: bwd/test/test_grader.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Functions | -Variables
-
-
test_grader.cpp File Reference
-
-
-
#include <sstream>
-#include "gtest/gtest.h"
-#include "testutil/common.hpp"
-#include "dbg/ade.hpp"
-#include "bwd/grader.hpp"
-
-Include dependency graph for test_grader.cpp:
-
-
- - - - - - - - - - - - - -
-
- - - - - -

-Classes

struct  MockTensor
 
struct  MockRuleSet
 
- - - - - - - - - - - - - - - - - - - - - -

-Functions

ade::TensptrT derive (ade::TensptrT &root, const ade::iTensor *wrt)
 
static void ltrim (std::string &s)
 
static void rtrim (std::string &s)
 
static void trim (std::string &s)
 
static void TREE_EQ (std::istream &expectstr, ade::TensptrT &root)
 
 TEST (GRADER, Ruleset)
 
 TEST (GRADER, Leaf)
 
 TEST (GRADER, Sum)
 
 TEST (GRADER, Prod)
 
 TEST (GRADER, SumProd)
 
- - - -

-Variables

static std::shared_ptr< age::iRuleSetmock_rules
 
-

Function Documentation

- -

◆ derive()

- -
-
- - - - - - - - - - - - - - - - - - -
ade::TensptrT derive (ade::TensptrTroot,
const ade::iTensorwrt 
)
-
- -
-
- -

◆ ltrim()

- -
-
- - - - - -
- - - - - - - - -
static void ltrim (std::string & s)
-
-inlinestatic
-
- -
-
- -

◆ rtrim()

- -
-
- - - - - -
- - - - - - - - -
static void rtrim (std::string & s)
-
-inlinestatic
-
- -
-
- -

◆ TEST() [1/5]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (GRADER ,
Ruleset  
)
-
- -
-
- -

◆ TEST() [2/5]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (GRADER ,
Leaf  
)
-
- -
-
- -

◆ TEST() [3/5]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (GRADER ,
Sum  
)
-
- -
-
- -

◆ TEST() [4/5]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (GRADER ,
Prod  
)
-
- -
-
- -

◆ TEST() [5/5]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (GRADER ,
SumProd  
)
-
- -
-
- -

◆ TREE_EQ()

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
static void TREE_EQ (std::istream & expectstr,
ade::TensptrTroot 
)
-
-static
-
- -
-
- -

◆ trim()

- -
-
- - - - - -
- - - - - - - - -
static void trim (std::string & s)
-
-inlinestatic
-
- -
-
-

Variable Documentation

- -

◆ mock_rules

- -
-
- - - - - -
- - - - -
std::shared_ptr<age::iRuleSet> mock_rules
-
-static
-
-Initial value:
=
std::make_shared<MockRuleSet>()
-
-
-
- - - - diff --git a/docs/html/bwd_2test_2test__grader_8cpp__incl.map b/docs/html/bwd_2test_2test__grader_8cpp__incl.map deleted file mode 100644 index 53f178946..000000000 --- a/docs/html/bwd_2test_2test__grader_8cpp__incl.map +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/docs/html/bwd_2test_2test__grader_8cpp__incl.md5 b/docs/html/bwd_2test_2test__grader_8cpp__incl.md5 deleted file mode 100644 index e205f3d9b..000000000 --- a/docs/html/bwd_2test_2test__grader_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -0943107915b46b3d83516f57bad21ff7 \ No newline at end of file diff --git a/docs/html/bwd_2test_2test__grader_8cpp__incl.png b/docs/html/bwd_2test_2test__grader_8cpp__incl.png deleted file mode 100644 index 1fb5e7ded..000000000 Binary files a/docs/html/bwd_2test_2test__grader_8cpp__incl.png and /dev/null differ diff --git a/docs/html/classagen_1_1_fields-members.html b/docs/html/classagen_1_1_fields-members.html deleted file mode 100644 index 76ef28117..000000000 --- a/docs/html/classagen_1_1_fields-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
agen.Fields Member List
-
-
- -

This is the complete list of members for agen.Fields, including all inherited members.

- - - - -
__init__(self, fields)agen.Fields
fieldsagen.Fields
unmarshal_json(self, jobj)agen.Fields
- - - - diff --git a/docs/html/classagen_1_1_fields.html b/docs/html/classagen_1_1_fields.html deleted file mode 100644 index 5c5945da6..000000000 --- a/docs/html/classagen_1_1_fields.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - -Tenncor: agen.Fields Class Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Public Member Functions | -Public Attributes | -List of all members
-
-
agen.Fields Class Reference
-
-
- - - - - - -

-Public Member Functions

def __init__ (self, fields)
 
def unmarshal_json (self, jobj)
 
- - - -

-Public Attributes

 fields
 
-

Constructor & Destructor Documentation

- -

◆ __init__()

- -
-
- - - - - - - - - - - - - - - - - - -
def agen.Fields.__init__ ( self,
 fields 
)
-
- -
-
-

Member Function Documentation

- -

◆ unmarshal_json()

- -
-
- - - - - - - - - - - - - - - - - - -
def agen.Fields.unmarshal_json ( self,
 jobj 
)
-
- -
-
-

Member Data Documentation

- -

◆ fields

- -
-
- - - - -
agen.Fields.fields
-
- -
-
-
The documentation for this class was generated from the following file: -
- - - - diff --git a/docs/html/classrepr_1_1_f_i_l_e___r_e_p_r-members.html b/docs/html/classrepr_1_1_f_i_l_e___r_e_p_r-members.html deleted file mode 100644 index 3119114fd..000000000 --- a/docs/html/classrepr_1_1_f_i_l_e___r_e_p_r-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
repr.FILE_REPR Member List
-
-
- -

This is the complete list of members for repr.FILE_REPR, including all inherited members.

- - - - -
__init__(self, template)repr.FILE_REPR
repr(self, values)repr.FILE_REPR
templaterepr.FILE_REPR
- - - - diff --git a/docs/html/classrepr_1_1_f_i_l_e___r_e_p_r.html b/docs/html/classrepr_1_1_f_i_l_e___r_e_p_r.html deleted file mode 100644 index 889e859b1..000000000 --- a/docs/html/classrepr_1_1_f_i_l_e___r_e_p_r.html +++ /dev/null @@ -1,173 +0,0 @@ - - - - - - - -Tenncor: repr.FILE_REPR Class Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Public Member Functions | -Public Attributes | -List of all members
-
-
repr.FILE_REPR Class Reference
-
-
- - - - - - -

-Public Member Functions

def __init__ (self, template)
 
def repr (self, values)
 
- - - -

-Public Attributes

 template
 
-

Constructor & Destructor Documentation

- -

◆ __init__()

- -
-
- - - - - - - - - - - - - - - - - - -
def repr.FILE_REPR.__init__ ( self,
 template 
)
-
- -
-
-

Member Function Documentation

- -

◆ repr()

- -
-
- - - - - - - - - - - - - - - - - - -
def repr.FILE_REPR.repr ( self,
 values 
)
-
- -
-
-

Member Data Documentation

- -

◆ template

- -
-
- - - - -
repr.FILE_REPR.template
-
- -
-
-
The documentation for this class was generated from the following file: -
- - - - diff --git a/docs/html/classtest_1_1_client_test-members.html b/docs/html/classtest_1_1_client_test-members.html deleted file mode 100644 index 78bbb737f..000000000 --- a/docs/html/classtest_1_1_client_test-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
test.ClientTest Member List
-
-
- -

This is the complete list of members for test.ClientTest, including all inherited members.

- - - - - -
test_api(self)test.ClientTest
test_codes(self)test.ClientTest
test_grader(self)test.ClientTest
test_opera(self)test.ClientTest
- - - - diff --git a/docs/html/classtest_1_1_client_test.html b/docs/html/classtest_1_1_client_test.html deleted file mode 100644 index 02ef44891..000000000 --- a/docs/html/classtest_1_1_client_test.html +++ /dev/null @@ -1,181 +0,0 @@ - - - - - - - -Tenncor: test.ClientTest Class Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Public Member Functions | -List of all members
-
-
test.ClientTest Class Reference
-
-
-
-Inheritance diagram for test.ClientTest:
-
-
Inheritance graph
-
[legend]
-
-Collaboration diagram for test.ClientTest:
-
-
Collaboration graph
-
[legend]
- - - - - - - - - - -

-Public Member Functions

def test_api (self)
 
def test_codes (self)
 
def test_grader (self)
 
def test_opera (self)
 
-

Member Function Documentation

- -

◆ test_api()

- -
-
- - - - - - - - -
def test.ClientTest.test_api ( self)
-
- -
-
- -

◆ test_codes()

- -
-
- - - - - - - - -
def test.ClientTest.test_codes ( self)
-
- -
-
- -

◆ test_grader()

- -
-
- - - - - - - - -
def test.ClientTest.test_grader ( self)
-
- -
-
- -

◆ test_opera()

- -
-
- - - - - - - - -
def test.ClientTest.test_opera ( self)
-
- -
-
-
The documentation for this class was generated from the following file: -
- - - - diff --git a/docs/html/classtest_1_1_client_test.png b/docs/html/classtest_1_1_client_test.png deleted file mode 100644 index 74660d3a2..000000000 Binary files a/docs/html/classtest_1_1_client_test.png and /dev/null differ diff --git a/docs/html/classtest_1_1_client_test__coll__graph.map b/docs/html/classtest_1_1_client_test__coll__graph.map deleted file mode 100644 index 01fa52150..000000000 --- a/docs/html/classtest_1_1_client_test__coll__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/classtest_1_1_client_test__coll__graph.md5 b/docs/html/classtest_1_1_client_test__coll__graph.md5 deleted file mode 100644 index 422a1762f..000000000 --- a/docs/html/classtest_1_1_client_test__coll__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -cdad5263ab7cb8c7b387d8ec9b89a6ac \ No newline at end of file diff --git a/docs/html/classtest_1_1_client_test__coll__graph.png b/docs/html/classtest_1_1_client_test__coll__graph.png deleted file mode 100644 index 40348b226..000000000 Binary files a/docs/html/classtest_1_1_client_test__coll__graph.png and /dev/null differ diff --git a/docs/html/classtest_1_1_client_test__inherit__graph.map b/docs/html/classtest_1_1_client_test__inherit__graph.map deleted file mode 100644 index 01fa52150..000000000 --- a/docs/html/classtest_1_1_client_test__inherit__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/classtest_1_1_client_test__inherit__graph.md5 b/docs/html/classtest_1_1_client_test__inherit__graph.md5 deleted file mode 100644 index 1cc92641d..000000000 --- a/docs/html/classtest_1_1_client_test__inherit__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -eb5104c53673bf1ee930702387755ffa \ No newline at end of file diff --git a/docs/html/classtest_1_1_client_test__inherit__graph.png b/docs/html/classtest_1_1_client_test__inherit__graph.png deleted file mode 100644 index 40348b226..000000000 Binary files a/docs/html/classtest_1_1_client_test__inherit__graph.png and /dev/null differ diff --git a/docs/html/codes__dep_8cpp.html b/docs/html/codes__dep_8cpp.html deleted file mode 100644 index 79de1157c..000000000 --- a/docs/html/codes__dep_8cpp.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - -Tenncor: age/test/codes_dep.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Functions
-
-
codes_dep.cpp File Reference
-
-
-
#include "age/test/grader_dep.hpp"
-#include "age/test/codes_dep.hpp"
-
-Include dependency graph for codes_dep.cpp:
-
-
- - - - - - - - - - - - - - - -
-
- - - -

-Functions

ade::TensptrT cooler (size_t bardock)
 
-

Function Documentation

- -

◆ cooler()

- -
-
- - - - - - - - -
ade::TensptrT cooler (size_t bardock)
-
- -
-
-
- - - - diff --git a/docs/html/codes__dep_8cpp__incl.map b/docs/html/codes__dep_8cpp__incl.map deleted file mode 100644 index 6d8539f4b..000000000 --- a/docs/html/codes__dep_8cpp__incl.map +++ /dev/null @@ -1,15 +0,0 @@ - - - - - - - - - - - - - - - diff --git a/docs/html/codes__dep_8cpp__incl.md5 b/docs/html/codes__dep_8cpp__incl.md5 deleted file mode 100644 index 90c50195a..000000000 --- a/docs/html/codes__dep_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -1c9afd37677808c3a7e27ba3db6b4aac \ No newline at end of file diff --git a/docs/html/codes__dep_8cpp__incl.png b/docs/html/codes__dep_8cpp__incl.png deleted file mode 100644 index 5b4cbc6c8..000000000 Binary files a/docs/html/codes__dep_8cpp__incl.png and /dev/null differ diff --git a/docs/html/codes__dep_8hpp.html b/docs/html/codes__dep_8hpp.html deleted file mode 100644 index 770bd988e..000000000 --- a/docs/html/codes__dep_8hpp.html +++ /dev/null @@ -1,140 +0,0 @@ - - - - - - - -Tenncor: age/test/codes_dep.hpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Functions
-
-
codes_dep.hpp File Reference
-
-
-
#include "ade/ileaf.hpp"
-
-Include dependency graph for codes_dep.hpp:
-
-
- - - - - - - - - -
-
-This graph shows which files directly or indirectly include this file:
-
-
- - - -
-
-

Go to the source code of this file.

- - - - - - -

-Classes

struct  Meat
 
struct  Fries
 
- - - -

-Functions

ade::TensptrT cooler (size_t bardock)
 
-

Function Documentation

- -

◆ cooler()

- -
-
- - - - - - - - -
ade::TensptrT cooler (size_t bardock)
-
- -
-
-
- - - - diff --git a/docs/html/codes__dep_8hpp__dep__incl.map b/docs/html/codes__dep_8hpp__dep__incl.map deleted file mode 100644 index fb57e53b9..000000000 --- a/docs/html/codes__dep_8hpp__dep__incl.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/codes__dep_8hpp__dep__incl.md5 b/docs/html/codes__dep_8hpp__dep__incl.md5 deleted file mode 100644 index 2866e814f..000000000 --- a/docs/html/codes__dep_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -a725db1272b29aa5b07cff446720fac3 \ No newline at end of file diff --git a/docs/html/codes__dep_8hpp__dep__incl.png b/docs/html/codes__dep_8hpp__dep__incl.png deleted file mode 100644 index 6c2d096c1..000000000 Binary files a/docs/html/codes__dep_8hpp__dep__incl.png and /dev/null differ diff --git a/docs/html/codes__dep_8hpp__incl.map b/docs/html/codes__dep_8hpp__incl.map deleted file mode 100644 index 6802a5407..000000000 --- a/docs/html/codes__dep_8hpp__incl.map +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/docs/html/codes__dep_8hpp__incl.md5 b/docs/html/codes__dep_8hpp__incl.md5 deleted file mode 100644 index 423bfcacb..000000000 --- a/docs/html/codes__dep_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -b8e40bc8ac64b58cb50584ef9d3b40c2 \ No newline at end of file diff --git a/docs/html/codes__dep_8hpp__incl.png b/docs/html/codes__dep_8hpp__incl.png deleted file mode 100644 index 82c64a64a..000000000 Binary files a/docs/html/codes__dep_8hpp__incl.png and /dev/null differ diff --git a/docs/html/codes__dep_8hpp_source.html b/docs/html/codes__dep_8hpp_source.html deleted file mode 100644 index 93a4207e2..000000000 --- a/docs/html/codes__dep_8hpp_source.html +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - -Tenncor: age/test/codes_dep.hpp Source File - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
codes_dep.hpp
-
-
-Go to the documentation of this file.
1 #include "ade/ileaf.hpp"
2 
3 #ifndef MOCK_CODES_DEP_HPP
4 #define MOCK_CODES_DEP_HPP
5 
6 struct Meat
7 {
8  Meat (size_t idx) : num(idx), size(idx / 2) {}
9 
10  int64_t num;
11  uint64_t size;
12 };
13 
14 struct Fries
15 {
16  Fries (size_t idx) : num(idx / 3), size(idx * 2) {}
17 
18  double num;
19  char size;
20 };
21 
22 ade::TensptrT cooler (size_t bardock);
23 
24 #endif // MOCK_CODES_DEP_HPP
Definition: codes_dep.hpp:14
- -
double num
Definition: codes_dep.hpp:18
-
Meat(size_t idx)
Definition: codes_dep.hpp:8
-
std::shared_ptr< iTensor > TensptrT
Definition: itensor.hpp:48
-
uint64_t size
Definition: codes_dep.hpp:11
-
Fries(size_t idx)
Definition: codes_dep.hpp:16
-
int64_t num
Definition: codes_dep.hpp:10
-
char size
Definition: codes_dep.hpp:19
-
ade::TensptrT cooler(size_t bardock)
Definition: codes_dep.cpp:4
-
Definition: codes_dep.hpp:6
-
- - - - diff --git a/docs/html/codes__tmpl_8py.html b/docs/html/codes__tmpl_8py.html deleted file mode 100644 index 9f36299f7..000000000 --- a/docs/html/codes__tmpl_8py.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - -Tenncor: age/templates/codes_tmpl.py File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Namespaces | -Variables
-
-
codes_tmpl.py File Reference
-
-
- - - - -

-Namespaces

 codes_tmpl
 
- - - - - - - - - - - - - - - - - - - - - - - -

-Variables

 codes_tmpl.header = repr.FILE_REPR()
 
 codes_tmpl.opcodes
 
 codes_tmpl.dtypes
 
 codes_tmpl.get_type_decls
 
 codes_tmpl.source = repr.FILE_REPR()
 
 codes_tmpl.code2names
 
 codes_tmpl.name2codes
 
 codes_tmpl.type2names
 
 codes_tmpl.name2types
 
 codes_tmpl.type_sizes
 
 codes_tmpl.get_types
 
-
- - - - diff --git a/docs/html/common_8hpp.html b/docs/html/common_8hpp.html deleted file mode 100644 index 2d5dd2054..000000000 --- a/docs/html/common_8hpp.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - -Tenncor: err/test/common.hpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Variables
-
-
common.hpp File Reference
-
-
-
#include "err/log.hpp"
-
-Include dependency graph for common.hpp:
-
-
- - - - -
-
-This graph shows which files directly or indirectly include this file:
-
-
- - - - -
-
-

Go to the source code of this file.

- - - - -

-Classes

struct  TestLogger
 
- - - -

-Variables

std::shared_ptr< TestLoggertlogger
 
-

Variable Documentation

- -

◆ tlogger

- -
-
- - - - -
std::shared_ptr<TestLogger> tlogger
-
- -
-
-
- - - - diff --git a/docs/html/common_8hpp__dep__incl.map b/docs/html/common_8hpp__dep__incl.map deleted file mode 100644 index 73a680331..000000000 --- a/docs/html/common_8hpp__dep__incl.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/docs/html/common_8hpp__dep__incl.md5 b/docs/html/common_8hpp__dep__incl.md5 deleted file mode 100644 index 3ee11b734..000000000 --- a/docs/html/common_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -6616a3e7a11f66188ddd660af2333a6e \ No newline at end of file diff --git a/docs/html/common_8hpp__dep__incl.png b/docs/html/common_8hpp__dep__incl.png deleted file mode 100644 index 8bf7c4fc3..000000000 Binary files a/docs/html/common_8hpp__dep__incl.png and /dev/null differ diff --git a/docs/html/common_8hpp__incl.map b/docs/html/common_8hpp__incl.map deleted file mode 100644 index 012757b40..000000000 --- a/docs/html/common_8hpp__incl.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/docs/html/common_8hpp__incl.md5 b/docs/html/common_8hpp__incl.md5 deleted file mode 100644 index 97a92a2b7..000000000 --- a/docs/html/common_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -6ff069a7b3a2665ab8ca255324268079 \ No newline at end of file diff --git a/docs/html/common_8hpp__incl.png b/docs/html/common_8hpp__incl.png deleted file mode 100644 index 670b6c79c..000000000 Binary files a/docs/html/common_8hpp__incl.png and /dev/null differ diff --git a/docs/html/common_8hpp_source.html b/docs/html/common_8hpp_source.html deleted file mode 100644 index 3938c058c..000000000 --- a/docs/html/common_8hpp_source.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Tenncor: err/test/common.hpp Source File - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
common.hpp
-
-
-Go to the documentation of this file.
1 #include "err/log.hpp"
2 
3 struct TestLogger : public err::iLogger
4 {
5  static std::string latest_warning_;
6  static std::string latest_error_;
7  static std::string latest_fatal_;
8 
9  void warn (std::string msg) const override
10  {
11  latest_warning_ = msg;
12  }
13 
14  void error (std::string msg) const override
15  {
16  latest_error_ = msg;
17  }
18 
19  void fatal (std::string msg) const override
20  {
21  latest_fatal_ = msg;
22  }
23 };
24 
25 extern std::shared_ptr<TestLogger> tlogger;
void fatal(std::string msg) const override
Notify user of message regarding fatal error, then finish him.
Definition: common.hpp:19
-
static std::string latest_error_
Definition: common.hpp:6
-
static std::string latest_warning_
Definition: common.hpp:5
-
void warn(std::string msg) const override
Warn user of message regarding poor decisions.
Definition: common.hpp:9
-
static std::string latest_fatal_
Definition: common.hpp:7
-
void error(std::string msg) const override
Notify user of message regarding recoverable error.
Definition: common.hpp:14
-
std::shared_ptr< TestLogger > tlogger
Definition: main.cpp:11
-
Definition: common.hpp:3
-
Interface of logger.
Definition: log.hpp:21
- -
- - - - diff --git a/docs/html/dir_000000_000004.html b/docs/html/dir_000000_000004.html deleted file mode 100644 index 38d8d2799..000000000 --- a/docs/html/dir_000000_000004.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - -Tenncor: ade -> err Relation - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-

ade → err Relation

File in adeIncludes file in err
shape.hpplog.hpp
- - - - diff --git a/docs/html/dir_000000_000006.html b/docs/html/dir_000000_000006.html deleted file mode 100644 index 38d8d2799..000000000 --- a/docs/html/dir_000000_000006.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - -Tenncor: ade -> err Relation - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-

ade → err Relation

File in adeIncludes file in err
shape.hpplog.hpp
- - - - diff --git a/docs/html/dir_000000_000008.html b/docs/html/dir_000000_000008.html deleted file mode 100644 index 38d8d2799..000000000 --- a/docs/html/dir_000000_000008.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - -Tenncor: ade -> err Relation - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-

ade → err Relation

File in adeIncludes file in err
shape.hpplog.hpp
- - - - diff --git a/docs/html/dir_000000_000009.html b/docs/html/dir_000000_000009.html deleted file mode 100644 index 38d8d2799..000000000 --- a/docs/html/dir_000000_000009.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - -Tenncor: ade -> err Relation - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-

ade → err Relation

File in adeIncludes file in err
shape.hpplog.hpp
- - - - diff --git a/docs/html/dir_000001_000009.html b/docs/html/dir_000001_000009.html deleted file mode 100644 index 5994a80f4..000000000 --- a/docs/html/dir_000001_000009.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - -Tenncor: ade/src -> err Relation - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-

src → err Relation

File in ade/srcIncludes file in err
coord.cpplog.hpp
- - - - diff --git a/docs/html/dir_000004_000000.html b/docs/html/dir_000004_000000.html deleted file mode 100644 index 44dbd4b52..000000000 --- a/docs/html/dir_000004_000000.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - -Tenncor: bwd -> ade Relation - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-

bwd → ade Relation

File in bwdIncludes file in ade
grader.hppfunctor.hpp
grader.hppileaf.hpp
grader.hpptraveler.hpp
- - - - diff --git a/docs/html/dir_000004_000005.html b/docs/html/dir_000004_000005.html deleted file mode 100644 index bc40bb9c9..000000000 --- a/docs/html/dir_000004_000005.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - -Tenncor: age/test -> bwd Relation - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-

test → bwd Relation

File in age/testIncludes file in bwd
grader_dep.hppgrader.hpp
- - - - diff --git a/docs/html/dir_000005_000000.html b/docs/html/dir_000005_000000.html deleted file mode 100644 index b73bd784a..000000000 --- a/docs/html/dir_000005_000000.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - -Tenncor: age/test -> ade Relation - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-

test → ade Relation

File in age/testIncludes file in ade
codes_dep.hppileaf.hpp
grader_dep.hppileaf.hpp
opmap_dep.hppshape.hpp
- - - - diff --git a/docs/html/dir_000005_000006.html b/docs/html/dir_000005_000006.html deleted file mode 100644 index bc40bb9c9..000000000 --- a/docs/html/dir_000005_000006.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - -Tenncor: age/test -> bwd Relation - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-

test → bwd Relation

File in age/testIncludes file in bwd
grader_dep.hppgrader.hpp
- - - - diff --git a/docs/html/dir_000006_000000.html b/docs/html/dir_000006_000000.html deleted file mode 100644 index 44dbd4b52..000000000 --- a/docs/html/dir_000006_000000.html +++ /dev/null @@ -1,76 +0,0 @@ - - - - - - - -Tenncor: bwd -> ade Relation - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-

bwd → ade Relation

File in bwdIncludes file in ade
grader.hppfunctor.hpp
grader.hppileaf.hpp
grader.hpptraveler.hpp
- - - - diff --git a/docs/html/dir_18cf7de2f2320a99e32b42c3a2d5eee4.html b/docs/html/dir_18cf7de2f2320a99e32b42c3a2d5eee4.html deleted file mode 100644 index a28f0c9cf..000000000 --- a/docs/html/dir_18cf7de2f2320a99e32b42c3a2d5eee4.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - -Tenncor: err Directory Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
err Directory Reference
-
-
- - - - -

-Directories

directory  src
 
- - - - - -

-Files

file  log.hpp [code]
 
file  string.hpp [code]
 
-
- - - - diff --git a/docs/html/dir_46069a17a3210c17707f703afdbf3997.html b/docs/html/dir_46069a17a3210c17707f703afdbf3997.html deleted file mode 100644 index 82dcebf5c..000000000 --- a/docs/html/dir_46069a17a3210c17707f703afdbf3997.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - -Tenncor: bwd/test Directory Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
test Directory Reference
-
-
-
-Directory dependency graph for test:
-
-
bwd/test
- - - - -
- - - - - - -

-Files

file  main.cpp
 
file  test_grader.cpp
 
-
- - - - diff --git a/docs/html/dir_46069a17a3210c17707f703afdbf3997_dep.map b/docs/html/dir_46069a17a3210c17707f703afdbf3997_dep.map deleted file mode 100644 index 89ce17126..000000000 --- a/docs/html/dir_46069a17a3210c17707f703afdbf3997_dep.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/docs/html/dir_46069a17a3210c17707f703afdbf3997_dep.md5 b/docs/html/dir_46069a17a3210c17707f703afdbf3997_dep.md5 deleted file mode 100644 index 381a955f1..000000000 --- a/docs/html/dir_46069a17a3210c17707f703afdbf3997_dep.md5 +++ /dev/null @@ -1 +0,0 @@ -3da42bc54f99de4346a41059f03abcc8 \ No newline at end of file diff --git a/docs/html/dir_46069a17a3210c17707f703afdbf3997_dep.png b/docs/html/dir_46069a17a3210c17707f703afdbf3997_dep.png deleted file mode 100644 index 487c35fb3..000000000 Binary files a/docs/html/dir_46069a17a3210c17707f703afdbf3997_dep.png and /dev/null differ diff --git a/docs/html/dir_5dd45d0ae45b5d7106a833cc140d360b.html b/docs/html/dir_5dd45d0ae45b5d7106a833cc140d360b.html deleted file mode 100644 index b6eafb5fb..000000000 --- a/docs/html/dir_5dd45d0ae45b5d7106a833cc140d360b.html +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - -Tenncor: age/templates Directory Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
templates Directory Reference
-
-
- - - - - - - - - - - - -

-Files

file  api_tmpl.py
 
file  codes_tmpl.py
 
file  grader_tmpl.py
 
file  opera_tmpl.py
 
file  repr.py
 
-
- - - - diff --git a/docs/html/dir_77cc74cba4d4a5ae52f89adba5244f91.html b/docs/html/dir_77cc74cba4d4a5ae52f89adba5244f91.html deleted file mode 100644 index b44b441bc..000000000 --- a/docs/html/dir_77cc74cba4d4a5ae52f89adba5244f91.html +++ /dev/null @@ -1,101 +0,0 @@ - - - - - - - -Tenncor: err/test Directory Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
test Directory Reference
-
-
-
-Directory dependency graph for test:
-
-
err/test
- - - - -
- - - - - - - - - - -

-Files

file  common.hpp [code]
 
file  main.cpp
 
file  test_log.cpp
 
file  test_string.cpp
 
-
- - - - diff --git a/docs/html/dir_77cc74cba4d4a5ae52f89adba5244f91_dep.map b/docs/html/dir_77cc74cba4d4a5ae52f89adba5244f91_dep.map deleted file mode 100644 index a74f3fd1e..000000000 --- a/docs/html/dir_77cc74cba4d4a5ae52f89adba5244f91_dep.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/docs/html/dir_77cc74cba4d4a5ae52f89adba5244f91_dep.md5 b/docs/html/dir_77cc74cba4d4a5ae52f89adba5244f91_dep.md5 deleted file mode 100644 index 9ede10a06..000000000 --- a/docs/html/dir_77cc74cba4d4a5ae52f89adba5244f91_dep.md5 +++ /dev/null @@ -1 +0,0 @@ -51de05c8bd907004e00e646150e78850 \ No newline at end of file diff --git a/docs/html/dir_77cc74cba4d4a5ae52f89adba5244f91_dep.png b/docs/html/dir_77cc74cba4d4a5ae52f89adba5244f91_dep.png deleted file mode 100644 index e247a3e7d..000000000 Binary files a/docs/html/dir_77cc74cba4d4a5ae52f89adba5244f91_dep.png and /dev/null differ diff --git a/docs/html/dir_b5f4e396fbd714c54fca430c4b638c07.html b/docs/html/dir_b5f4e396fbd714c54fca430c4b638c07.html deleted file mode 100644 index 82ff829a1..000000000 --- a/docs/html/dir_b5f4e396fbd714c54fca430c4b638c07.html +++ /dev/null @@ -1,118 +0,0 @@ - - - - - - - -Tenncor: age/test Directory Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
test Directory Reference
-
-
-
-Directory dependency graph for test:
-
-
age/test
- - - - - - - - - -
- - - - - - - - - - - - - - - - - - - - - - -

-Files

file  codes_dep.cpp
 
file  codes_dep.hpp [code]
 
file  grader_dep.cpp
 
file  grader_dep.hpp [code]
 
file  main.cpp
 
file  opmap_dep.hpp [code]
 
file  test_api.cpp
 
file  test_codes.cpp
 
file  test_grader.cpp
 
file  test_opmap.cpp
 
-
- - - - diff --git a/docs/html/dir_b5f4e396fbd714c54fca430c4b638c07_dep.map b/docs/html/dir_b5f4e396fbd714c54fca430c4b638c07_dep.map deleted file mode 100644 index 7e38fa2b3..000000000 --- a/docs/html/dir_b5f4e396fbd714c54fca430c4b638c07_dep.map +++ /dev/null @@ -1,9 +0,0 @@ - - - - - - - - - diff --git a/docs/html/dir_b5f4e396fbd714c54fca430c4b638c07_dep.md5 b/docs/html/dir_b5f4e396fbd714c54fca430c4b638c07_dep.md5 deleted file mode 100644 index da22d47b4..000000000 --- a/docs/html/dir_b5f4e396fbd714c54fca430c4b638c07_dep.md5 +++ /dev/null @@ -1 +0,0 @@ -fcfd9e81ad443f59ea5e3aec42697951 \ No newline at end of file diff --git a/docs/html/dir_b5f4e396fbd714c54fca430c4b638c07_dep.png b/docs/html/dir_b5f4e396fbd714c54fca430c4b638c07_dep.png deleted file mode 100644 index 321409197..000000000 Binary files a/docs/html/dir_b5f4e396fbd714c54fca430c4b638c07_dep.png and /dev/null differ diff --git a/docs/html/dir_c37806b71f3ece57dc14afd206973995.html b/docs/html/dir_c37806b71f3ece57dc14afd206973995.html deleted file mode 100644 index 576a52fff..000000000 --- a/docs/html/dir_c37806b71f3ece57dc14afd206973995.html +++ /dev/null @@ -1,109 +0,0 @@ - - - - - - - -Tenncor: ade/test Directory Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
test Directory Reference
-
-
-
-Directory dependency graph for test:
-
-
ade/test
- - - - -
- - - - - - - - - - - - - - - - - - -

-Files

file  common.hpp [code]
 
file  main.cpp
 
file  test_coord.cpp
 
file  test_functor.cpp
 
file  test_matops.cpp
 
file  test_shape.cpp
 
file  test_tensor.cpp
 
file  test_traveler.cpp
 
-
- - - - diff --git a/docs/html/dir_c37806b71f3ece57dc14afd206973995_dep.map b/docs/html/dir_c37806b71f3ece57dc14afd206973995_dep.map deleted file mode 100644 index c5b7b2c67..000000000 --- a/docs/html/dir_c37806b71f3ece57dc14afd206973995_dep.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/docs/html/dir_c37806b71f3ece57dc14afd206973995_dep.md5 b/docs/html/dir_c37806b71f3ece57dc14afd206973995_dep.md5 deleted file mode 100644 index 44f328ea3..000000000 --- a/docs/html/dir_c37806b71f3ece57dc14afd206973995_dep.md5 +++ /dev/null @@ -1 +0,0 @@ -7f27e12512359a14bb4073b1a4a9628b \ No newline at end of file diff --git a/docs/html/dir_c37806b71f3ece57dc14afd206973995_dep.png b/docs/html/dir_c37806b71f3ece57dc14afd206973995_dep.png deleted file mode 100644 index 2710ddd4f..000000000 Binary files a/docs/html/dir_c37806b71f3ece57dc14afd206973995_dep.png and /dev/null differ diff --git a/docs/html/dir_d09ea42bee4376c35c233003cc6c56a5.html b/docs/html/dir_d09ea42bee4376c35c233003cc6c56a5.html deleted file mode 100644 index 31f69b721..000000000 --- a/docs/html/dir_d09ea42bee4376c35c233003cc6c56a5.html +++ /dev/null @@ -1,93 +0,0 @@ - - - - - - - -Tenncor: age Directory Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
age Directory Reference
-
-
- - - - -

-Directories

directory  templates
 
- - - - - -

-Files

file  agen.py
 
file  test.py
 
-
- - - - diff --git a/docs/html/dir_d09ea42bee4376c35c233003cc6c56a5_dep.map b/docs/html/dir_d09ea42bee4376c35c233003cc6c56a5_dep.map deleted file mode 100644 index 777aad147..000000000 --- a/docs/html/dir_d09ea42bee4376c35c233003cc6c56a5_dep.map +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/docs/html/dir_d09ea42bee4376c35c233003cc6c56a5_dep.md5 b/docs/html/dir_d09ea42bee4376c35c233003cc6c56a5_dep.md5 deleted file mode 100644 index 11d44358f..000000000 --- a/docs/html/dir_d09ea42bee4376c35c233003cc6c56a5_dep.md5 +++ /dev/null @@ -1 +0,0 @@ -42455756eb27cf72e1e740d7d4c82250 \ No newline at end of file diff --git a/docs/html/dir_d09ea42bee4376c35c233003cc6c56a5_dep.png b/docs/html/dir_d09ea42bee4376c35c233003cc6c56a5_dep.png deleted file mode 100644 index 3b65400a7..000000000 Binary files a/docs/html/dir_d09ea42bee4376c35c233003cc6c56a5_dep.png and /dev/null differ diff --git a/docs/html/dir_d9791597c265d13a898219b646f36862.html b/docs/html/dir_d9791597c265d13a898219b646f36862.html deleted file mode 100644 index 722098dc1..000000000 --- a/docs/html/dir_d9791597c265d13a898219b646f36862.html +++ /dev/null @@ -1,97 +0,0 @@ - - - - - - - -Tenncor: err/src Directory Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
src Directory Reference
-
-
-
-Directory dependency graph for src:
-
-
err/src
- - - - -
- - - - - - -

-Files

file  log.cpp
 
file  string.cpp
 
-
- - - - diff --git a/docs/html/dir_d9791597c265d13a898219b646f36862_dep.map b/docs/html/dir_d9791597c265d13a898219b646f36862_dep.map deleted file mode 100644 index 06bd60095..000000000 --- a/docs/html/dir_d9791597c265d13a898219b646f36862_dep.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/docs/html/dir_d9791597c265d13a898219b646f36862_dep.md5 b/docs/html/dir_d9791597c265d13a898219b646f36862_dep.md5 deleted file mode 100644 index ed28059f4..000000000 --- a/docs/html/dir_d9791597c265d13a898219b646f36862_dep.md5 +++ /dev/null @@ -1 +0,0 @@ -ed0f9157577af7f80e89b84e0cd8f740 \ No newline at end of file diff --git a/docs/html/dir_d9791597c265d13a898219b646f36862_dep.png b/docs/html/dir_d9791597c265d13a898219b646f36862_dep.png deleted file mode 100644 index 9592fe8bc..000000000 Binary files a/docs/html/dir_d9791597c265d13a898219b646f36862_dep.png and /dev/null differ diff --git a/docs/html/dir_e27d2b201b2b67ab280cb2f6929c41a1_dep.map b/docs/html/dir_e27d2b201b2b67ab280cb2f6929c41a1_dep.map deleted file mode 100644 index 1d98c6cca..000000000 --- a/docs/html/dir_e27d2b201b2b67ab280cb2f6929c41a1_dep.map +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/docs/html/dir_e27d2b201b2b67ab280cb2f6929c41a1_dep.md5 b/docs/html/dir_e27d2b201b2b67ab280cb2f6929c41a1_dep.md5 deleted file mode 100644 index 1c4f8d65c..000000000 --- a/docs/html/dir_e27d2b201b2b67ab280cb2f6929c41a1_dep.md5 +++ /dev/null @@ -1 +0,0 @@ -a175b498f530cec1e7f2236666a400e8 \ No newline at end of file diff --git a/docs/html/dir_e27d2b201b2b67ab280cb2f6929c41a1_dep.png b/docs/html/dir_e27d2b201b2b67ab280cb2f6929c41a1_dep.png deleted file mode 100644 index b3ff2b910..000000000 Binary files a/docs/html/dir_e27d2b201b2b67ab280cb2f6929c41a1_dep.png and /dev/null differ diff --git a/docs/html/err_2test_2common_8hpp.html b/docs/html/err_2test_2common_8hpp.html deleted file mode 100644 index 1f3211a3c..000000000 --- a/docs/html/err_2test_2common_8hpp.html +++ /dev/null @@ -1,130 +0,0 @@ - - - - - - - -Tenncor: err/test/common.hpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Variables
-
-
common.hpp File Reference
-
-
-
#include "err/log.hpp"
-
-Include dependency graph for common.hpp:
-
-
- - - - -
-
-This graph shows which files directly or indirectly include this file:
-
-
- - - - -
-
-

Go to the source code of this file.

- - - - -

-Classes

struct  TestLogger
 
- - - -

-Variables

std::shared_ptr< TestLoggertlogger
 
-

Variable Documentation

- -

◆ tlogger

- -
-
- - - - -
std::shared_ptr<TestLogger> tlogger
-
- -
-
-
- - - - diff --git a/docs/html/err_2test_2common_8hpp__dep__incl.map b/docs/html/err_2test_2common_8hpp__dep__incl.map deleted file mode 100644 index 73a680331..000000000 --- a/docs/html/err_2test_2common_8hpp__dep__incl.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/docs/html/err_2test_2common_8hpp__dep__incl.md5 b/docs/html/err_2test_2common_8hpp__dep__incl.md5 deleted file mode 100644 index 3ee11b734..000000000 --- a/docs/html/err_2test_2common_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -6616a3e7a11f66188ddd660af2333a6e \ No newline at end of file diff --git a/docs/html/err_2test_2common_8hpp__dep__incl.png b/docs/html/err_2test_2common_8hpp__dep__incl.png deleted file mode 100644 index 8bf7c4fc3..000000000 Binary files a/docs/html/err_2test_2common_8hpp__dep__incl.png and /dev/null differ diff --git a/docs/html/err_2test_2common_8hpp__incl.map b/docs/html/err_2test_2common_8hpp__incl.map deleted file mode 100644 index 012757b40..000000000 --- a/docs/html/err_2test_2common_8hpp__incl.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/docs/html/err_2test_2common_8hpp__incl.md5 b/docs/html/err_2test_2common_8hpp__incl.md5 deleted file mode 100644 index 97a92a2b7..000000000 --- a/docs/html/err_2test_2common_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -6ff069a7b3a2665ab8ca255324268079 \ No newline at end of file diff --git a/docs/html/err_2test_2common_8hpp__incl.png b/docs/html/err_2test_2common_8hpp__incl.png deleted file mode 100644 index 670b6c79c..000000000 Binary files a/docs/html/err_2test_2common_8hpp__incl.png and /dev/null differ diff --git a/docs/html/err_2test_2common_8hpp_source.html b/docs/html/err_2test_2common_8hpp_source.html deleted file mode 100644 index f921492e2..000000000 --- a/docs/html/err_2test_2common_8hpp_source.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Tenncor: err/test/common.hpp Source File - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
common.hpp
-
-
-Go to the documentation of this file.
1 #include "err/log.hpp"
2 
3 struct TestLogger : public err::iLogger
4 {
5  static std::string latest_warning_;
6  static std::string latest_error_;
7  static std::string latest_fatal_;
8 
9  void warn (std::string msg) const override
10  {
11  latest_warning_ = msg;
12  }
13 
14  void error (std::string msg) const override
15  {
16  latest_error_ = msg;
17  }
18 
19  void fatal (std::string msg) const override
20  {
21  latest_fatal_ = msg;
22  }
23 };
24 
25 extern std::shared_ptr<TestLogger> tlogger;
void fatal(std::string msg) const override
Notify user of message regarding fatal error, then finish him.
Definition: common.hpp:19
-
static std::string latest_error_
Definition: common.hpp:6
-
static std::string latest_warning_
Definition: common.hpp:5
-
void warn(std::string msg) const override
Warn user of message regarding poor decisions.
Definition: common.hpp:9
-
static std::string latest_fatal_
Definition: common.hpp:7
-
void error(std::string msg) const override
Notify user of message regarding recoverable error.
Definition: common.hpp:14
-
Definition: common.hpp:3
-
Interface of logger.
Definition: log.hpp:21
- -
std::shared_ptr< TestLogger > tlogger
Definition: main.cpp:11
-
- - - - diff --git a/docs/html/err_2test_2main_8cpp.html b/docs/html/err_2test_2main_8cpp.html deleted file mode 100644 index 8885af562..000000000 --- a/docs/html/err_2test_2main_8cpp.html +++ /dev/null @@ -1,150 +0,0 @@ - - - - - - - -Tenncor: err/test/main.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Functions | -Variables
-
-
main.cpp File Reference
-
-
-
#include "gtest/gtest.h"
-#include "err/test/common.hpp"
-
-Include dependency graph for main.cpp:
-
-
- - - - - -
-
- - - -

-Functions

int main (int argc, char **argv)
 
- - - -

-Variables

std::shared_ptr< TestLoggertlogger = std::make_shared<TestLogger>()
 
-

Function Documentation

- -

◆ main()

- -
-
- - - - - - - - - - - - - - - - - - -
int main (int argc,
char ** argv 
)
-
- -
-
-

Variable Documentation

- -

◆ tlogger

- -
-
- - - - -
std::shared_ptr<TestLogger> tlogger = std::make_shared<TestLogger>()
-
- -
-
-
- - - - diff --git a/docs/html/err_2test_2main_8cpp__incl.map b/docs/html/err_2test_2main_8cpp__incl.map deleted file mode 100644 index f77305cef..000000000 --- a/docs/html/err_2test_2main_8cpp__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/docs/html/err_2test_2main_8cpp__incl.md5 b/docs/html/err_2test_2main_8cpp__incl.md5 deleted file mode 100644 index 6dca68637..000000000 --- a/docs/html/err_2test_2main_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -7577ad7ab4356714d2619f354bd29e94 \ No newline at end of file diff --git a/docs/html/err_2test_2main_8cpp__incl.png b/docs/html/err_2test_2main_8cpp__incl.png deleted file mode 100644 index ea006c2db..000000000 Binary files a/docs/html/err_2test_2main_8cpp__incl.png and /dev/null differ diff --git a/docs/html/globals.html b/docs/html/globals.html deleted file mode 100644 index 51d5c2320..000000000 --- a/docs/html/globals.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Tenncor: File Members - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - -
- -
-
- - -
- -
- -
-
Here is a list of all file members with links to the files they belong to:
-
- - - - diff --git a/docs/html/globals_defs.html b/docs/html/globals_defs.html deleted file mode 100644 index 575f03ac7..000000000 --- a/docs/html/globals_defs.html +++ /dev/null @@ -1,83 +0,0 @@ - - - - - - - -Tenncor: File Members - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - -
- -
-
- - -
- -
- -
-
- - - - diff --git a/docs/html/globals_func.html b/docs/html/globals_func.html deleted file mode 100644 index e4cca1380..000000000 --- a/docs/html/globals_func.html +++ /dev/null @@ -1,174 +0,0 @@ - - - - - - - -Tenncor: File Members - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - -
- -
-
- - -
- -
- -
-  - -

- a -

- - -

- c -

- - -

- d -

- - -

- k -

- - -

- l -

- - -

- m -

- - -

- r -

- - -

- t -

-
- - - - diff --git a/docs/html/globals_vars.html b/docs/html/globals_vars.html deleted file mode 100644 index bae3d928b..000000000 --- a/docs/html/globals_vars.html +++ /dev/null @@ -1,90 +0,0 @@ - - - - - - - -Tenncor: File Members - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - -
- -
-
- - -
- -
- -
-
- - - - diff --git a/docs/html/grader__dep_8cpp.html b/docs/html/grader__dep_8cpp.html deleted file mode 100644 index 31c8ff0aa..000000000 --- a/docs/html/grader__dep_8cpp.html +++ /dev/null @@ -1,168 +0,0 @@ - - - - - - - -Tenncor: age/test/grader_dep.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Functions
-
-
grader_dep.cpp File Reference
-
-
-
#include <cassert>
-#include "age/test/grader_dep.hpp"
-
-Include dependency graph for grader_dep.cpp:
-
-
- - - - - - - - - - - - - - -
-
- - - - - -

-Functions

ade::TensptrT arms_heavy (size_t idx, age::TensT args)
 
ade::TensptrT dj_grad (age::TensT args, size_t idx)
 
-

Function Documentation

- -

◆ arms_heavy()

- -
-
- - - - - - - - - - - - - - - - - - -
ade::TensptrT arms_heavy (size_t idx,
age::TensT args 
)
-
- -
-
- -

◆ dj_grad()

- -
-
- - - - - - - - - - - - - - - - - - -
ade::TensptrT dj_grad (age::TensT args,
size_t idx 
)
-
- -
-
-
- - - - diff --git a/docs/html/grader__dep_8cpp__incl.map b/docs/html/grader__dep_8cpp__incl.map deleted file mode 100644 index b90184550..000000000 --- a/docs/html/grader__dep_8cpp__incl.map +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/docs/html/grader__dep_8cpp__incl.md5 b/docs/html/grader__dep_8cpp__incl.md5 deleted file mode 100644 index 5ed7ba3cf..000000000 --- a/docs/html/grader__dep_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -fead0d93b7658880076d027ac1bfcbd5 \ No newline at end of file diff --git a/docs/html/grader__dep_8cpp__incl.png b/docs/html/grader__dep_8cpp__incl.png deleted file mode 100644 index 1a7b292ed..000000000 Binary files a/docs/html/grader__dep_8cpp__incl.png and /dev/null differ diff --git a/docs/html/grader__dep_8hpp.html b/docs/html/grader__dep_8hpp.html deleted file mode 100644 index e365e4e65..000000000 --- a/docs/html/grader__dep_8hpp.html +++ /dev/null @@ -1,207 +0,0 @@ - - - - - - - -Tenncor: age/test/grader_dep.hpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Functions | -Variables
-
-
grader_dep.hpp File Reference
-
-
-
#include "ade/ileaf.hpp"
-#include "bwd/grader.hpp"
-
-Include dependency graph for grader_dep.hpp:
-
-
- - - - - - - - - - - - - -
-
-This graph shows which files directly or indirectly include this file:
-
-
- - - - - - -
-
-

Go to the source code of this file.

- - - - -

-Classes

struct  MockTensor
 
- - - - - -

-Functions

ade::TensptrT arms_heavy (size_t idx, age::TensT args)
 
ade::TensptrT dj_grad (age::TensT args, size_t idx)
 
- - - -

-Variables

const size_t khaled_constant = 45
 
-

Function Documentation

- -

◆ arms_heavy()

- -
-
- - - - - - - - - - - - - - - - - - -
ade::TensptrT arms_heavy (size_t idx,
age::TensT args 
)
-
- -
-
- -

◆ dj_grad()

- -
-
- - - - - - - - - - - - - - - - - - -
ade::TensptrT dj_grad (age::TensT args,
size_t idx 
)
-
- -
-
-

Variable Documentation

- -

◆ khaled_constant

- -
-
- - - - -
const size_t khaled_constant = 45
-
- -
-
-
- - - - diff --git a/docs/html/grader__dep_8hpp__dep__incl.map b/docs/html/grader__dep_8hpp__dep__incl.map deleted file mode 100644 index 929afca7e..000000000 --- a/docs/html/grader__dep_8hpp__dep__incl.map +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/docs/html/grader__dep_8hpp__dep__incl.md5 b/docs/html/grader__dep_8hpp__dep__incl.md5 deleted file mode 100644 index 9adbbb4fd..000000000 --- a/docs/html/grader__dep_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -6eef0776f553760cdde56b81f13b5973 \ No newline at end of file diff --git a/docs/html/grader__dep_8hpp__dep__incl.png b/docs/html/grader__dep_8hpp__dep__incl.png deleted file mode 100644 index f623e05a0..000000000 Binary files a/docs/html/grader__dep_8hpp__dep__incl.png and /dev/null differ diff --git a/docs/html/grader__dep_8hpp__incl.map b/docs/html/grader__dep_8hpp__incl.map deleted file mode 100644 index 1033af74c..000000000 --- a/docs/html/grader__dep_8hpp__incl.map +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/docs/html/grader__dep_8hpp__incl.md5 b/docs/html/grader__dep_8hpp__incl.md5 deleted file mode 100644 index a53d6ee78..000000000 --- a/docs/html/grader__dep_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -d008c9c72e96e2ea3296b9a598e8dc0c \ No newline at end of file diff --git a/docs/html/grader__dep_8hpp__incl.png b/docs/html/grader__dep_8hpp__incl.png deleted file mode 100644 index 0202b1e6d..000000000 Binary files a/docs/html/grader__dep_8hpp__incl.png and /dev/null differ diff --git a/docs/html/grader__dep_8hpp_source.html b/docs/html/grader__dep_8hpp_source.html deleted file mode 100644 index bf8da987b..000000000 --- a/docs/html/grader__dep_8hpp_source.html +++ /dev/null @@ -1,99 +0,0 @@ - - - - - - - -Tenncor: age/test/grader_dep.hpp Source File - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
grader_dep.hpp
-
-
-Go to the documentation of this file.
1 #include "ade/ileaf.hpp"
2 #include "bwd/grader.hpp"
3 
4 #ifndef MOCK_GRADER_DEP_HPP
5 #define MOCK_GRADER_DEP_HPP
6 
7 const size_t khaled_constant = 45;
8 
9 struct MockTensor : public ade::iLeaf
10 {
11  MockTensor (double scalar, ade::Shape shape) :
12  scalar_(scalar), shape_(shape) {}
13 
14  const ade::Shape& shape (void) const override
15  {
16  return shape_;
17  }
18 
19  std::string to_string (void) const override
20  {
21  return "MockTensor";
22  }
23 
24  void* data (void) override
25  {
26  return &scalar_;
27  }
28 
29  const void* data (void) const override
30  {
31  return &scalar_;
32  }
33 
34  size_t type_code (void) const override
35  {
36  return 0;
37  }
38 
39  double scalar_;
40 
42 };
43 
45 
46 ade::TensptrT dj_grad (age::TensT args, size_t idx);
47 
48 #endif // MOCK_GRADER_DEP_HPP
MockTensor(double scalar, ade::Shape shape)
Definition: grader_dep.hpp:11
- -
const size_t khaled_constant
Definition: grader_dep.hpp:7
-
std::string to_string(void) const override
Return the string representation of the tensor.
Definition: grader_dep.hpp:19
-
Leaf of the graph commonly representing the variable in an equation.
Definition: ileaf.hpp:18
-
Definition: common.hpp:6
- -
size_t type_code(void) const override
Return data type encoding.
Definition: grader_dep.hpp:34
-
double scalar_
Definition: grader_dep.hpp:39
-
std::shared_ptr< iTensor > TensptrT
Definition: itensor.hpp:48
-
ade::Shape shape_
Definition: common.hpp:37
-
Definition: shape.hpp:49
-
const ade::Shape & shape(void) const override
Return the shape held by this tensor.
Definition: common.hpp:12
-
ade::TensptrT arms_heavy(size_t idx, age::TensT args)
Definition: grader_dep.cpp:4
-
void * data(void) override
Return pointer to internal data.
Definition: grader_dep.hpp:24
-
const void * data(void) const override
Return const pointer to internal data.
Definition: grader_dep.hpp:29
-
std::vector< ade::TensptrT > TensT
Vector representation of tensor pointers.
Definition: grader.hpp:22
-
args
Definition: agen.py:213
-
ade::TensptrT dj_grad(age::TensT args, size_t idx)
Definition: grader_dep.cpp:11
-
- - - - diff --git a/docs/html/grader__tmpl_8py.html b/docs/html/grader__tmpl_8py.html deleted file mode 100644 index 7fbe89fb7..000000000 --- a/docs/html/grader__tmpl_8py.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - -Tenncor: age/templates/grader_tmpl.py File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Namespaces | -Variables
-
-
grader_tmpl.py File Reference
-
-
- - - - -

-Namespaces

 grader_tmpl
 
- - - - - - - - - - - - - -

-Variables

 grader_tmpl.header = repr.FILE_REPR()
 
 grader_tmpl.scalarize
 
 grader_tmpl.sum
 
 grader_tmpl.prod
 
 grader_tmpl.source = repr.FILE_REPR()
 
 grader_tmpl.gradops
 
-
- - - - diff --git a/docs/html/inherit_graph_10.map b/docs/html/inherit_graph_10.map deleted file mode 100644 index e4d34ec31..000000000 --- a/docs/html/inherit_graph_10.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/inherit_graph_10.md5 b/docs/html/inherit_graph_10.md5 deleted file mode 100644 index b5adbae13..000000000 --- a/docs/html/inherit_graph_10.md5 +++ /dev/null @@ -1 +0,0 @@ -1d935cc68d7514dd5833bdd3a1b6b686 \ No newline at end of file diff --git a/docs/html/inherit_graph_10.png b/docs/html/inherit_graph_10.png deleted file mode 100644 index 53d7d27a6..000000000 Binary files a/docs/html/inherit_graph_10.png and /dev/null differ diff --git a/docs/html/inherit_graph_11.map b/docs/html/inherit_graph_11.map deleted file mode 100644 index c3d84e8ba..000000000 --- a/docs/html/inherit_graph_11.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/inherit_graph_11.md5 b/docs/html/inherit_graph_11.md5 deleted file mode 100644 index f0749e1a0..000000000 --- a/docs/html/inherit_graph_11.md5 +++ /dev/null @@ -1 +0,0 @@ -9a6fbbaba0181c5c112fa56c297a5f1d \ No newline at end of file diff --git a/docs/html/inherit_graph_11.png b/docs/html/inherit_graph_11.png deleted file mode 100644 index 139ef376c..000000000 Binary files a/docs/html/inherit_graph_11.png and /dev/null differ diff --git a/docs/html/inherit_graph_12.map b/docs/html/inherit_graph_12.map deleted file mode 100644 index 865d2b411..000000000 --- a/docs/html/inherit_graph_12.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/inherit_graph_12.md5 b/docs/html/inherit_graph_12.md5 deleted file mode 100644 index 280353d5c..000000000 --- a/docs/html/inherit_graph_12.md5 +++ /dev/null @@ -1 +0,0 @@ -dd840888becff84b948aeaef65484402 \ No newline at end of file diff --git a/docs/html/inherit_graph_12.png b/docs/html/inherit_graph_12.png deleted file mode 100644 index 05384ec4b..000000000 Binary files a/docs/html/inherit_graph_12.png and /dev/null differ diff --git a/docs/html/inherit_graph_13.map b/docs/html/inherit_graph_13.map deleted file mode 100644 index d1d528a2f..000000000 --- a/docs/html/inherit_graph_13.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/inherit_graph_13.md5 b/docs/html/inherit_graph_13.md5 deleted file mode 100644 index ff3bf51a0..000000000 --- a/docs/html/inherit_graph_13.md5 +++ /dev/null @@ -1 +0,0 @@ -c828c3d615a5c5169f17a5071a57929d \ No newline at end of file diff --git a/docs/html/inherit_graph_13.png b/docs/html/inherit_graph_13.png deleted file mode 100644 index f7c9cb9d9..000000000 Binary files a/docs/html/inherit_graph_13.png and /dev/null differ diff --git a/docs/html/inherit_graph_14.map b/docs/html/inherit_graph_14.map deleted file mode 100644 index a5159a451..000000000 --- a/docs/html/inherit_graph_14.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/inherit_graph_14.md5 b/docs/html/inherit_graph_14.md5 deleted file mode 100644 index 09e61f753..000000000 --- a/docs/html/inherit_graph_14.md5 +++ /dev/null @@ -1 +0,0 @@ -c4a899cc39d8c17b16b299696e3db9b9 \ No newline at end of file diff --git a/docs/html/inherit_graph_14.png b/docs/html/inherit_graph_14.png deleted file mode 100644 index 588abceee..000000000 Binary files a/docs/html/inherit_graph_14.png and /dev/null differ diff --git a/docs/html/inherit_graph_15.map b/docs/html/inherit_graph_15.map deleted file mode 100644 index e4d34ec31..000000000 --- a/docs/html/inherit_graph_15.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/inherit_graph_15.md5 b/docs/html/inherit_graph_15.md5 deleted file mode 100644 index b5adbae13..000000000 --- a/docs/html/inherit_graph_15.md5 +++ /dev/null @@ -1 +0,0 @@ -1d935cc68d7514dd5833bdd3a1b6b686 \ No newline at end of file diff --git a/docs/html/inherit_graph_15.png b/docs/html/inherit_graph_15.png deleted file mode 100644 index 53d7d27a6..000000000 Binary files a/docs/html/inherit_graph_15.png and /dev/null differ diff --git a/docs/html/inherit_graph_7.map b/docs/html/inherit_graph_7.map deleted file mode 100644 index b89b7fe1e..000000000 --- a/docs/html/inherit_graph_7.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/docs/html/inherit_graph_7.md5 b/docs/html/inherit_graph_7.md5 deleted file mode 100644 index 85ea90d4d..000000000 --- a/docs/html/inherit_graph_7.md5 +++ /dev/null @@ -1 +0,0 @@ -850e4174284b727444bffb74ddda5fbd \ No newline at end of file diff --git a/docs/html/inherit_graph_7.png b/docs/html/inherit_graph_7.png deleted file mode 100644 index ba6b424df..000000000 Binary files a/docs/html/inherit_graph_7.png and /dev/null differ diff --git a/docs/html/inherit_graph_8.map b/docs/html/inherit_graph_8.map deleted file mode 100644 index b89b7fe1e..000000000 --- a/docs/html/inherit_graph_8.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/docs/html/inherit_graph_8.md5 b/docs/html/inherit_graph_8.md5 deleted file mode 100644 index 85ea90d4d..000000000 --- a/docs/html/inherit_graph_8.md5 +++ /dev/null @@ -1 +0,0 @@ -850e4174284b727444bffb74ddda5fbd \ No newline at end of file diff --git a/docs/html/inherit_graph_8.png b/docs/html/inherit_graph_8.png deleted file mode 100644 index ba6b424df..000000000 Binary files a/docs/html/inherit_graph_8.png and /dev/null differ diff --git a/docs/html/inherit_graph_9.map b/docs/html/inherit_graph_9.map deleted file mode 100644 index d1d528a2f..000000000 --- a/docs/html/inherit_graph_9.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/inherit_graph_9.md5 b/docs/html/inherit_graph_9.md5 deleted file mode 100644 index ff3bf51a0..000000000 --- a/docs/html/inherit_graph_9.md5 +++ /dev/null @@ -1 +0,0 @@ -c828c3d615a5c5169f17a5071a57929d \ No newline at end of file diff --git a/docs/html/inherit_graph_9.png b/docs/html/inherit_graph_9.png deleted file mode 100644 index f7c9cb9d9..000000000 Binary files a/docs/html/inherit_graph_9.png and /dev/null differ diff --git a/docs/html/log_8cpp.html b/docs/html/log_8cpp.html deleted file mode 100644 index 36c5aff01..000000000 --- a/docs/html/log_8cpp.html +++ /dev/null @@ -1,123 +0,0 @@ - - - - - - - -Tenncor: err/src/log.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Namespaces | -Functions | -Variables
-
-
log.cpp File Reference
-
-
-
#include "err/log.hpp"
-
-Include dependency graph for log.cpp:
-
-
- - - - -
-
- - - -

-Namespaces

 err
 
- - - - - - - - - - - - - - - - -

-Functions

void err::set_logger (std::shared_ptr< iLogger > logger)
 Set input logger for ADE global logger. More...
 
const iLogger & err::get_logger (void)
 Get reference to ADE global logger. More...
 
void err::warn (std::string msg)
 Warn using global logger. More...
 
void err::error (std::string msg)
 Error using global logger. More...
 
void err::fatal (std::string msg)
 Fatal using global logger. More...
 
- - - -

-Variables

static std::shared_ptr< iLogger > err::glogger = std::make_shared<DefLogger>()
 
-
- - - - diff --git a/docs/html/log_8cpp__incl.map b/docs/html/log_8cpp__incl.map deleted file mode 100644 index 6e83346d5..000000000 --- a/docs/html/log_8cpp__incl.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/docs/html/log_8cpp__incl.md5 b/docs/html/log_8cpp__incl.md5 deleted file mode 100644 index 3b9f9c3c4..000000000 --- a/docs/html/log_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -7865df216b0ec553c1ea3dd27bd04966 \ No newline at end of file diff --git a/docs/html/log_8cpp__incl.png b/docs/html/log_8cpp__incl.png deleted file mode 100644 index 099f98f05..000000000 Binary files a/docs/html/log_8cpp__incl.png and /dev/null differ diff --git a/docs/html/log_8hpp.html b/docs/html/log_8hpp.html deleted file mode 100644 index 0c3ef57c6..000000000 --- a/docs/html/log_8hpp.html +++ /dev/null @@ -1,196 +0,0 @@ - - - - - - - -Tenncor: err/log.hpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Namespaces | -Macros | -Functions | -Variables
-
-
log.hpp File Reference
-
-
-
#include <iostream>
-#include <memory>
-#include "err/string.hpp"
-
-Include dependency graph for log.hpp:
-
-
- - - -
-
-This graph shows which files directly or indirectly include this file:
-
-
- - - - - - - - - - - - - - - - -
-
-

Go to the source code of this file.

- - - - - - - - -

-Classes

struct  err::iLogger
 Interface of logger. More...
 
struct  err::DefLogger
 Default implementation of iLogger used in ADE. More...
 
- - - -

-Namespaces

 err
 
- - - -

-Macros

#define ERR_LOG_HPP
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Functions

void err::set_logger (std::shared_ptr< iLogger > logger)
 Set input logger for ADE global logger. More...
 
const iLogger & err::get_logger (void)
 Get reference to ADE global logger. More...
 
void err::warn (std::string msg)
 Warn using global logger. More...
 
void err::error (std::string msg)
 Error using global logger. More...
 
void err::fatal (std::string msg)
 Fatal using global logger. More...
 
template<typename... ARGS>
void err::warnf (std::string format, ARGS... args)
 Warn using global logger with arguments. More...
 
template<typename... ARGS>
void err::errorf (std::string format, ARGS... args)
 Error using global logger with arguments. More...
 
template<typename... ARGS>
void err::fatalf (std::string format, ARGS... args)
 Fatal using global logger with arguments. More...
 
- - - - - - - -

-Variables

const std::string err::warn_tag = "[WARNING]:"
 String tagged prepending a warning message in default logger. More...
 
const std::string err::err_tag = "[ERROR]:"
 String tagged prepending an error message in default logger. More...
 
-

Macro Definition Documentation

- -

◆ ERR_LOG_HPP

- -
-
- - - - -
#define ERR_LOG_HPP
-
-

log.hpp err

-

Purpose: Define log message handling interface

- -
-
-
- - - - diff --git a/docs/html/log_8hpp__dep__incl.map b/docs/html/log_8hpp__dep__incl.map deleted file mode 100644 index dd2e2e0ff..000000000 --- a/docs/html/log_8hpp__dep__incl.map +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/docs/html/log_8hpp__dep__incl.md5 b/docs/html/log_8hpp__dep__incl.md5 deleted file mode 100644 index 686a6999f..000000000 --- a/docs/html/log_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -bd7e6e76411d89165b561197bb6d9610 \ No newline at end of file diff --git a/docs/html/log_8hpp__dep__incl.png b/docs/html/log_8hpp__dep__incl.png deleted file mode 100644 index 9e229c010..000000000 Binary files a/docs/html/log_8hpp__dep__incl.png and /dev/null differ diff --git a/docs/html/log_8hpp__incl.map b/docs/html/log_8hpp__incl.map deleted file mode 100644 index 6aa0e3f49..000000000 --- a/docs/html/log_8hpp__incl.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/log_8hpp__incl.md5 b/docs/html/log_8hpp__incl.md5 deleted file mode 100644 index 15984d111..000000000 --- a/docs/html/log_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -ef09b4cd639148ef9854d388eb12724d \ No newline at end of file diff --git a/docs/html/log_8hpp__incl.png b/docs/html/log_8hpp__incl.png deleted file mode 100644 index 8c7056ebc..000000000 Binary files a/docs/html/log_8hpp__incl.png and /dev/null differ diff --git a/docs/html/log_8hpp_source.html b/docs/html/log_8hpp_source.html deleted file mode 100644 index 9359655d0..000000000 --- a/docs/html/log_8hpp_source.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - -Tenncor: err/log.hpp Source File - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
log.hpp
-
-
-Go to the documentation of this file.
1 
9 #include <iostream>
10 #include <memory>
11 
12 #include "err/string.hpp"
13 
14 #ifndef ERR_LOG_HPP
15 #define ERR_LOG_HPP
16 
17 namespace err
18 {
19 
21 struct iLogger
22 {
23  virtual ~iLogger (void) = default;
24 
26  virtual void warn (std::string msg) const = 0;
27 
29  virtual void error (std::string msg) const = 0;
30 
32  virtual void fatal (std::string msg) const = 0;
33 };
34 
36 const std::string warn_tag = "[WARNING]:";
37 
39 const std::string err_tag = "[ERROR]:";
40 
42 struct DefLogger final : public iLogger
43 {
45  void warn (std::string msg) const override
46  {
47  std::cerr << warn_tag << msg << '\n';
48  }
49 
51  void error (std::string msg) const override
52  {
53  std::cerr << err_tag << msg << '\n';
54  }
55 
57  void fatal (std::string msg) const override
58  {
59  throw std::runtime_error(msg);
60  }
61 };
62 
64 void set_logger (std::shared_ptr<iLogger> logger);
65 
67 const iLogger& get_logger (void);
68 
70 void warn (std::string msg);
71 
73 void error (std::string msg);
74 
76 void fatal (std::string msg);
77 
79 template <typename... ARGS>
80 void warnf (std::string format, ARGS... args)
81 {
82  warn(err::sprintf(format, args...));
83 }
84 
86 template <typename... ARGS>
87 void errorf (std::string format, ARGS... args)
88 {
89  error(err::sprintf(format, args...));
90 }
91 
93 template <typename... ARGS>
94 void fatalf (std::string format, ARGS... args)
95 {
96  fatal(err::sprintf(format, args...));
97 }
98 
99 }
100 
101 #endif // ERR_LOG_HPP
virtual void error(std::string msg) const =0
Notify user of message regarding recoverable error.
-
void fatal(std::string msg) const override
Implementation of iLogger.
Definition: log.hpp:57
-
void error(std::string msg) const override
Implementation of iLogger.
Definition: log.hpp:51
-
void error(std::string msg)
Error using global logger.
Definition: log.cpp:25
-
Default implementation of iLogger used in ADE.
Definition: log.hpp:42
-
Definition: log.hpp:17
-
virtual ~iLogger(void)=default
-
const std::string warn_tag
String tagged prepending a warning message in default logger.
Definition: log.hpp:36
-
void warnf(std::string format, ARGS... args)
Warn using global logger with arguments.
Definition: log.hpp:80
-
const iLogger & get_logger(void)
Get reference to ADE global logger.
Definition: log.cpp:15
-
virtual void fatal(std::string msg) const =0
Notify user of message regarding fatal error, then finish him.
-
void warn(std::string msg) const override
Implementation of iLogger.
Definition: log.hpp:45
-
std::string sprintf(std::string format, ARGS... args)
Return std::string with snprintf formatting.
Definition: string.hpp:84
-
void errorf(std::string format, ARGS... args)
Error using global logger with arguments.
Definition: log.hpp:87
- -
void set_logger(std::shared_ptr< iLogger > logger)
Set input logger for ADE global logger.
Definition: log.cpp:10
-
virtual void warn(std::string msg) const =0
Warn user of message regarding poor decisions.
-
Interface of logger.
Definition: log.hpp:21
-
void fatal(std::string msg)
Fatal using global logger.
Definition: log.cpp:30
-
const std::string err_tag
String tagged prepending an error message in default logger.
Definition: log.hpp:39
-
void warn(std::string msg)
Warn using global logger.
Definition: log.cpp:20
-
void fatalf(std::string format, ARGS... args)
Fatal using global logger with arguments.
Definition: log.hpp:94
-
- - - - diff --git a/docs/html/md_age__r_e_a_d_m_e__a_g_e.html b/docs/html/md_age__r_e_a_d_m_e__a_g_e.html deleted file mode 100644 index 7844dc46e..000000000 --- a/docs/html/md_age__r_e_a_d_m_e__a_g_e.html +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - -Tenncor: AGE (ADE Generation Engine) - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
AGE (ADE Generation Engine)
-
-
-

Generate glue api for ADE and some data manipulation library

-

Configuration

-

The configuration script must be a json file in the following format:

-

{ "includes": { "< output filename >": [ "< c++ include path with quotes or triangle brackets >", ... ], ... }, "dtypes": { "< type_code >": "< c++ type >", ... }, "data": { "sum": "< op_code for nnary addition operation >", "prod": "< op_code for binary product operation >", "data_out": "< output type of op_exec >", "data_in": "< input type of op_exec >", "scalarize": "< call to create a tensor containing a double scalar filled to a specific shape >" }, "opcodes": { "< op_code >": { "operation": "< operations call given (data_out out,ade::Shape shape,data_in in) signature >", "derivative": "< chain rule of opcode given RuleSet::grad_rule signature >" }, ... }, "apis": [ { "name": "< function name >", "args": ["< arg type > < arg name >", ...], "out": "< output signature >" }, ... ] }

-

Includepath

-

Generated files automatically add include paths to other generated files specified by –out directory + filename. –strip_prefix argument excludes the argument from the include path if the argument is the prefix

-
- - - - diff --git a/docs/html/md_err__r_e_a_d_m_e__e_r_r.html b/docs/html/md_err__r_e_a_d_m_e__e_r_r.html deleted file mode 100644 index 7abde230a..000000000 --- a/docs/html/md_err__r_e_a_d_m_e__e_r_r.html +++ /dev/null @@ -1,81 +0,0 @@ - - - - - - - -Tenncor: Error logger (ERR) - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
Error logger (ERR)
-
-
-

Define string manipulation and error handling functionality

-

ERR provides a global iLogger to users for handling warning, error, and fatal messages

-

By default, the global logger throws on fatal and prints to stderr for warning and errors

-

Extension

-

Users can implement iLogger and set it as the global logger via set_logger

-
- - - - diff --git a/docs/html/namespaceagen.html b/docs/html/namespaceagen.html deleted file mode 100644 index 888bf48f1..000000000 --- a/docs/html/namespaceagen.html +++ /dev/null @@ -1,495 +0,0 @@ - - - - - - - -Tenncor: agen Namespace Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Classes | -Functions | -Variables
-
-
agen Namespace Reference
-
-
- - - - -

-Classes

class  Fields
 
- - - - - - - - - -

-Functions

def parse (cfg_str)
 
def format_include (includes)
 
def make_dir (fields, includes, includepath)
 
def main (cfgpath=None, outpath=None, strip_prefix='')
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Variables

string prog_description = 'Generate c++ glue layer mapping ADE and some data-processing library.'
 
string hdr_postfix = ".hpp"
 
string src_postfix = ".cpp"
 
string api_filename = "api"
 
string codes_filename = "codes"
 
string grader_filename = "grader"
 
string opera_filename = "opmap"
 
string runtime_filename = "runtime"
 
 root
 
 parser = argparse.ArgumentParser(description=prog_description)
 
 dest
 
 nargs
 
 help
 
 default
 
 args = parser.parse_args()
 
 cfgpath
 
 outpath
 
 strip_prefix
 
-

Detailed Description

-
Generate glue layer 

Function Documentation

- -

◆ format_include()

- -
-
- - - - - - - - -
def agen.format_include ( includes)
-
- -
-
- -

◆ main()

- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
def agen.main ( cfgpath = None,
 outpath = None,
 strip_prefix = '' 
)
-
- -
-
- -

◆ make_dir()

- -
-
- - - - - - - - - - - - - - - - - - - - - - - - -
def agen.make_dir ( fields,
 includes,
 includepath 
)
-
- -
-
- -

◆ parse()

- -
-
- - - - - - - - -
def agen.parse ( cfg_str)
-
- -
-
-

Variable Documentation

- -

◆ api_filename

- -
-
- - - - -
string agen.api_filename = "api"
-
- -
-
- -

◆ args

- -
-
- - - - -
agen.args = parser.parse_args()
-
- -
-
- -

◆ cfgpath

- -
-
- - - - -
agen.cfgpath
-
- -
-
- -

◆ codes_filename

- -
-
- - - - -
string agen.codes_filename = "codes"
-
- -
-
- -

◆ default

- -
-
- - - - -
agen.default
-
- -
-
- -

◆ dest

- -
-
- - - - -
agen.dest
-
- -
-
- -

◆ grader_filename

- -
-
- - - - -
string agen.grader_filename = "grader"
-
- -
-
- -

◆ hdr_postfix

- -
-
- - - - -
string agen.hdr_postfix = ".hpp"
-
- -
-
- -

◆ help

- -
-
- - - - -
agen.help
-
- -
-
- -

◆ nargs

- -
-
- - - - -
agen.nargs
-
- -
-
- -

◆ opera_filename

- -
-
- - - - -
string agen.opera_filename = "opmap"
-
- -
-
- -

◆ outpath

- -
-
- - - - -
agen.outpath
-
- -
-
- -

◆ parser

- -
-
- - - - -
agen.parser = argparse.ArgumentParser(description=prog_description)
-
- -
-
- -

◆ prog_description

- -
-
- - - - -
string agen.prog_description = 'Generate c++ glue layer mapping ADE and some data-processing library.'
-
- -
-
- -

◆ root

- -
-
- - - - -
agen.root
-
-Initial value:
1 = Fields({
2  "opcodes": (dict, "opcodes"),
3  "dtypes": (dict, "dtypes"),
4  "data": (dict, Fields({
5  "sum": (unicode, "sum"),
6  "prod": (unicode, "prod"),
7  "data_in": (unicode, "data_in"),
8  "data_out": (unicode, "data_out"),
9  "scalarize": (unicode, "scalarize"),
10  })),
11  "apis": (list, "apis")
12 })
-
-
- -

◆ runtime_filename

- -
-
- - - - -
string agen.runtime_filename = "runtime"
-
- -
-
- -

◆ src_postfix

- -
-
- - - - -
string agen.src_postfix = ".cpp"
-
- -
-
- -

◆ strip_prefix

- -
-
- - - - -
agen.strip_prefix
-
- -
-
-
- - - - diff --git a/docs/html/namespaceapi__tmpl.html b/docs/html/namespaceapi__tmpl.html deleted file mode 100644 index ce79ee684..000000000 --- a/docs/html/namespaceapi__tmpl.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - - - -Tenncor: api_tmpl Namespace Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Functions | -Variables
-
-
api_tmpl Namespace Reference
-
-
- - - - -

-Functions

def nullcheck (args)
 
- - - - - - - -

-Variables

 header = repr.FILE_REPR()
 
 api_decls
 
 source = repr.FILE_REPR()
 
-

Detailed Description

-
Representation of API files 

Function Documentation

- -

◆ nullcheck()

- -
-
- - - - - - - - -
def api_tmpl.nullcheck ( args)
-
- -
-
-

Variable Documentation

- -

◆ api_decls

- -
-
- - - - -
api_tmpl.api_decls
-
- -
-
- -

◆ header

- -
-
- - - - -
api_tmpl.header = repr.FILE_REPR()
-
- -
-
- -

◆ source

- -
-
- - - - -
api_tmpl.source = repr.FILE_REPR()
-
- -
-
-
- - - - diff --git a/docs/html/namespacecodes__tmpl.html b/docs/html/namespacecodes__tmpl.html deleted file mode 100644 index ca39108c5..000000000 --- a/docs/html/namespacecodes__tmpl.html +++ /dev/null @@ -1,260 +0,0 @@ - - - - - - - -Tenncor: codes_tmpl Namespace Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Variables
-
-
codes_tmpl Namespace Reference
-
-
- - - - - - - - - - - - - - - - - - - - - - - - -

-Variables

 header = repr.FILE_REPR()
 
 opcodes
 
 dtypes
 
 get_type_decls
 
 source = repr.FILE_REPR()
 
 code2names
 
 name2codes
 
 type2names
 
 name2types
 
 type_sizes
 
 get_types
 
-

Detailed Description

-
Representation of OPCODE and DTYPE definition files 

Variable Documentation

- -

◆ code2names

- -
-
- - - - -
codes_tmpl.code2names
-
- -
-
- -

◆ dtypes

- -
-
- - - - -
codes_tmpl.dtypes
-
- -
-
- -

◆ get_type_decls

- -
-
- - - - -
codes_tmpl.get_type_decls
-
- -
-
- -

◆ get_types

- -
-
- - - - -
codes_tmpl.get_types
-
- -
-
- -

◆ header

- -
-
- - - - -
codes_tmpl.header = repr.FILE_REPR()
-
- -
-
- -

◆ name2codes

- -
-
- - - - -
codes_tmpl.name2codes
-
- -
-
- -

◆ name2types

- -
-
- - - - -
codes_tmpl.name2types
-
- -
-
- -

◆ opcodes

- -
-
- - - - -
codes_tmpl.opcodes
-
- -
-
- -

◆ source

- -
-
- - - - -
codes_tmpl.source = repr.FILE_REPR()
-
- -
-
- -

◆ type2names

- -
-
- - - - -
codes_tmpl.type2names
-
- -
-
- -

◆ type_sizes

- -
-
- - - - -
codes_tmpl.type_sizes
-
- -
-
-
- - - - diff --git a/docs/html/namespaceerr.html b/docs/html/namespaceerr.html deleted file mode 100644 index 72735014a..000000000 --- a/docs/html/namespaceerr.html +++ /dev/null @@ -1,751 +0,0 @@ - - - - - - - -Tenncor: err Namespace Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Classes | -Functions | -Variables
-
-
err Namespace Reference
-
-
- - - - - - - - -

-Classes

struct  DefLogger
 Default implementation of iLogger used in ADE. More...
 
struct  iLogger
 Interface of logger. More...
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Functions

void set_logger (std::shared_ptr< iLogger > logger)
 Set input logger for ADE global logger. More...
 
const iLoggerget_logger (void)
 Get reference to ADE global logger. More...
 
void warn (std::string msg)
 Warn using global logger. More...
 
void error (std::string msg)
 Error using global logger. More...
 
void fatal (std::string msg)
 Fatal using global logger. More...
 
template<typename... ARGS>
void warnf (std::string format, ARGS... args)
 Warn using global logger with arguments. More...
 
template<typename... ARGS>
void errorf (std::string format, ARGS... args)
 Error using global logger with arguments. More...
 
template<typename... ARGS>
void fatalf (std::string format, ARGS... args)
 Fatal using global logger with arguments. More...
 
void to_stream (std::ostream &s, const char *str)
 Stream C-style strings to s. More...
 
void to_stream (std::ostream &s, std::string str)
 Stream std::strings to s. More...
 
void to_stream (std::ostream &s, int8_t c)
 Stream byte-size integers and display as numbers to s. More...
 
void to_stream (std::ostream &s, uint8_t c)
 Stream byte-size unsigned integers and display as numbers to s. More...
 
template<typename T >
void to_stream (std::ostream &s, T val)
 Stream generic value to s. More...
 
template<typename Iterator >
void to_stream (std::ostream &s, Iterator begin, Iterator end)
 Stream values between iterators as an array. More...
 
template<typename T >
std::string to_string (T arg)
 Return string representation for common arguments. More...
 
template<typename Iterator >
std::string to_string (Iterator begin, Iterator end)
 Return string representation of values between iterators. More...
 
template<typename... ARGS>
std::string sprintf (std::string format, ARGS... args)
 Return std::string with snprintf formatting. More...
 
- - - - - - - - - - - - - - - - - - -

-Variables

const std::string warn_tag = "[WARNING]:"
 String tagged prepending a warning message in default logger. More...
 
const std::string err_tag = "[ERROR]:"
 String tagged prepending an error message in default logger. More...
 
static std::shared_ptr< iLoggerglogger = std::make_shared<DefLogger>()
 
const char arr_begin = '['
 Symbol for the start of an array as string. More...
 
const char arr_end = ']'
 Symbol for the end of an array as string. More...
 
const char arr_delim = '\\'
 Symbol for the delimter between elements of an array as string. More...
 
-

Detailed Description

-

string.hpp err

-

Purpose: Define string conversions for displaying various types

-

Function Documentation

- -

◆ error()

- -
-
- - - - - - - - -
void err::error (std::string msg)
-
- -

Error using global logger.

- -
-
- -

◆ errorf()

- -
-
-
-template<typename... ARGS>
- - - - - - - - - - - - - - - - - - -
void err::errorf (std::string format,
ARGS... args 
)
-
- -

Error using global logger with arguments.

- -
-
- -

◆ fatal()

- -
-
- - - - - - - - -
void err::fatal (std::string msg)
-
- -

Fatal using global logger.

- -
-
- -

◆ fatalf()

- -
-
-
-template<typename... ARGS>
- - - - - - - - - - - - - - - - - - -
void err::fatalf (std::string format,
ARGS... args 
)
-
- -

Fatal using global logger with arguments.

- -
-
- -

◆ get_logger()

- -
-
- - - - - - - - -
const iLogger & err::get_logger (void )
-
- -

Get reference to ADE global logger.

- -
-
- -

◆ set_logger()

- -
-
- - - - - - - - -
void err::set_logger (std::shared_ptr< iLoggerlogger)
-
- -

Set input logger for ADE global logger.

- -
-
- -

◆ sprintf()

- -
-
-
-template<typename... ARGS>
- - - - - - - - - - - - - - - - - - -
std::string err::sprintf (std::string format,
ARGS... args 
)
-
- -

Return std::string with snprintf formatting.

- -
-
- -

◆ to_stream() [1/6]

- -
-
- - - - - - - - - - - - - - - - - - -
void err::to_stream (std::ostream & s,
const char * str 
)
-
- -

Stream C-style strings to s.

- -
-
- -

◆ to_stream() [2/6]

- -
-
- - - - - - - - - - - - - - - - - - -
void err::to_stream (std::ostream & s,
std::string str 
)
-
- -

Stream std::strings to s.

- -
-
- -

◆ to_stream() [3/6]

- -
-
- - - - - - - - - - - - - - - - - - -
void err::to_stream (std::ostream & s,
int8_t c 
)
-
- -

Stream byte-size integers and display as numbers to s.

- -
-
- -

◆ to_stream() [4/6]

- -
-
- - - - - - - - - - - - - - - - - - -
void err::to_stream (std::ostream & s,
uint8_t c 
)
-
- -

Stream byte-size unsigned integers and display as numbers to s.

- -
-
- -

◆ to_stream() [5/6]

- -
-
-
-template<typename T >
- - - - - - - - - - - - - - - - - - -
void err::to_stream (std::ostream & s,
val 
)
-
- -

Stream generic value to s.

- -
-
- -

◆ to_stream() [6/6]

- -
-
-
-template<typename Iterator >
- - - - - - - - - - - - - - - - - - - - - - - - -
void err::to_stream (std::ostream & s,
Iterator begin,
Iterator end 
)
-
- -

Stream values between iterators as an array.

- -
-
- -

◆ to_string() [1/2]

- -
-
-
-template<typename T >
- - - - - - - - -
std::string err::to_string (arg)
-
- -

Return string representation for common arguments.

- -
-
- -

◆ to_string() [2/2]

- -
-
-
-template<typename Iterator >
- - - - - - - - - - - - - - - - - - -
std::string err::to_string (Iterator begin,
Iterator end 
)
-
- -

Return string representation of values between iterators.

- -
-
- -

◆ warn()

- -
-
- - - - - - - - -
void err::warn (std::string msg)
-
- -

Warn using global logger.

- -
-
- -

◆ warnf()

- -
-
-
-template<typename... ARGS>
- - - - - - - - - - - - - - - - - - -
void err::warnf (std::string format,
ARGS... args 
)
-
- -

Warn using global logger with arguments.

- -
-
-

Variable Documentation

- -

◆ arr_begin

- -
-
- - - - -
const char err::arr_begin = '['
-
- -

Symbol for the start of an array as string.

- -
-
- -

◆ arr_delim

- -
-
- - - - -
const char err::arr_delim = '\\'
-
- -

Symbol for the delimter between elements of an array as string.

- -
-
- -

◆ arr_end

- -
-
- - - - -
const char err::arr_end = ']'
-
- -

Symbol for the end of an array as string.

- -
-
- -

◆ err_tag

- -
-
- - - - -
const std::string err::err_tag = "[ERROR]:"
-
- -

String tagged prepending an error message in default logger.

- -
-
- -

◆ glogger

- -
-
- - - - - -
- - - - -
std::shared_ptr<iLogger> err::glogger = std::make_shared<DefLogger>()
-
-static
-
- -
-
- -

◆ warn_tag

- -
-
- - - - -
const std::string err::warn_tag = "[WARNING]:"
-
- -

String tagged prepending a warning message in default logger.

- -
-
-
- - - - diff --git a/docs/html/namespacegrader__tmpl.html b/docs/html/namespacegrader__tmpl.html deleted file mode 100644 index 30eb05133..000000000 --- a/docs/html/namespacegrader__tmpl.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - - -Tenncor: grader_tmpl Namespace Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Variables
-
-
grader_tmpl Namespace Reference
-
-
- - - - - - - - - - - - - - -

-Variables

 header = repr.FILE_REPR()
 
 scalarize
 
 sum
 
 prod
 
 source = repr.FILE_REPR()
 
 gradops
 
-

Detailed Description

-
Representation of gradient mapping files 

Variable Documentation

- -

◆ gradops

- -
-
- - - - -
grader_tmpl.gradops
-
- -
-
- -

◆ header

- -
-
- - - - -
grader_tmpl.header = repr.FILE_REPR()
-
- -
-
- -

◆ prod

- -
-
- - - - -
grader_tmpl.prod
-
- -
-
- -

◆ scalarize

- -
-
- - - - -
grader_tmpl.scalarize
-
- -
-
- -

◆ source

- -
-
- - - - -
grader_tmpl.source = repr.FILE_REPR()
-
- -
-
- -

◆ sum

- -
-
- - - - -
grader_tmpl.sum
-
- -
-
-
- - - - diff --git a/docs/html/namespaceopera__tmpl.html b/docs/html/namespaceopera__tmpl.html deleted file mode 100644 index 256c1099f..000000000 --- a/docs/html/namespaceopera__tmpl.html +++ /dev/null @@ -1,180 +0,0 @@ - - - - - - - -Tenncor: opera_tmpl Namespace Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Variables
-
-
opera_tmpl Namespace Reference
-
-
- - - - - - - - - - - - - - -

-Variables

 header = repr.FILE_REPR()
 
 data_in
 
 data_out
 
 ops
 
 source = repr.FILE_REPR()
 
 types
 
-

Detailed Description

-
Representation of operation mapping files 

Variable Documentation

- -

◆ data_in

- -
-
- - - - -
opera_tmpl.data_in
-
- -
-
- -

◆ data_out

- -
-
- - - - -
opera_tmpl.data_out
-
- -
-
- -

◆ header

- -
-
- - - - -
opera_tmpl.header = repr.FILE_REPR()
-
- -
-
- -

◆ ops

- -
-
- - - - -
opera_tmpl.ops
-
- -
-
- -

◆ source

- -
-
- - - - -
opera_tmpl.source = repr.FILE_REPR()
-
- -
-
- -

◆ types

- -
-
- - - - -
opera_tmpl.types
-
- -
-
-
- - - - diff --git a/docs/html/namespacerepr.html b/docs/html/namespacerepr.html deleted file mode 100644 index 9586d58e6..000000000 --- a/docs/html/namespacerepr.html +++ /dev/null @@ -1,85 +0,0 @@ - - - - - - - -Tenncor: repr Namespace Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Classes
-
-
repr Namespace Reference
-
-
- - - - -

-Classes

class  FILE_REPR
 
-

Detailed Description

-
Represent files as templates and recursively format templates according to some dictionary of values 
- - - - diff --git a/docs/html/namespacetest.html b/docs/html/namespacetest.html deleted file mode 100644 index dd4b68a02..000000000 --- a/docs/html/namespacetest.html +++ /dev/null @@ -1,281 +0,0 @@ - - - - - - - -Tenncor: test Namespace Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Classes | -Variables
-
-
test Namespace Reference
-
-
- - - - -

-Classes

class  ClientTest
 
- - - - - - - - - - - - - - - - - - - - - - - - - -

-Variables

dictionary api_fields
 
dictionary codes_fields
 
dictionary grader_fields
 
dictionary opera_fields
 
string api_header
 
string api_source
 
string codes_header
 
string codes_source
 
string grader_header
 
string grader_source
 
string opera_header
 
string opera_source
 
-

Variable Documentation

- -

◆ api_fields

- -
-
- - - - -
dictionary test.api_fields
-
-Initial value:
1 = {"apis": [
2  {"name": "func1", "args": [], "out": "bar1()"},
3  {"name": "func2", "args": ["ade::TensptrT arg", "Arg arg1"], "out": "bar2()"},
4  {"name": "func3", "args": ["ade::TensptrT arg", "Arg arg1", "ade::TensptrT arg2"], "out": "bar3()"}
5 ]}
-
-
- -

◆ api_header

- -
-
- - - - -
string test.api_header
-
-Initial value:
1 = """#ifndef _GENERATED_API_HPP
2 #define _GENERATED_API_HPP
3 
4 namespace age
5 {
6 
7 ade::TensptrT func1 ();
8 
9 ade::TensptrT func2 (ade::TensptrT arg, Arg arg1);
10 
11 ade::TensptrT func3 (ade::TensptrT arg, Arg arg1, ade::TensptrT arg2);
12 
13 }
14 
15 #endif // _GENERATED_API_HPP
16 """
-
-
- -

◆ api_source

- -
-
- - - - -
string test.api_source
-
- -
-
- -

◆ codes_fields

- -
-
- - - - -
dictionary test.codes_fields
-
-Initial value:
1 = {
2  "opcodes": ["OP", "OP1", "OP2", "OP3"],
3  "dtypes": {
4  "CAR": "char",
5  "VROOM": "double",
6  "VRUM": "float",
7  "KAPOW": "complex_t"
8  }
9 }
-
-
- -

◆ codes_header

- -
-
- - - - -
string test.codes_header
-
- -
-
- -

◆ codes_source

- -
-
- - - - -
string test.codes_source
-
- -
-
- -

◆ grader_fields

- -
-
- - - - -
dictionary test.grader_fields
-
-Initial value:
1 = {
2  "scalarize": "get_numba(12345)",
3  "sum": "ADDITION",
4  "prod": "MULTIPLICATION",
5  "grads": {
6  "FOO": "bwd_foo(args, idx)",
7  "BAR": "bwd_bar(args[0], idx)",
8  "BAR2": "foo(args[1])",
9  }
10 }
-
-
- -

◆ grader_header

- -
-
- - - - -
string test.grader_header
-
- -
-
- -

◆ grader_source

- -
-
- - - - -
string test.grader_source
-
-Initial value:
1 = """#ifdef _GENERATED_GRADER_HPP
2 
3 namespace age
4 {
5 
6 ade::TensptrT RuleSet::grad_rule (size_t code,TensT args,size_t idx)
7 {
8  switch (code)
9  {
10  case FOO: return bwd_foo(args, idx);
11  case BAR: return bwd_bar(args[0], idx);
12  case BAR2: return foo(args[1]);
13  default: err::fatal("no gradient rule for unknown opcode");
14  }
15 }
16 
17 }
18 
19 #endif
20 """
-
-
- -

◆ opera_fields

- -
-
- - - - -
dictionary test.opera_fields
-
-Initial value:
1 = {
2  "data_in": "In_Type",
3  "data_out": "Out_Type",
4  "ops": {
5  "OP": "foo(out, shape)",
6  "OP2": "bar1(out, shape, in)",
7  "FOO": "bar2(out, in[1])",
8  },
9  "types": {
10  "APPLE": "skin_t",
11  "BANANA": "peel_t",
12  "ORANGE": "seed_t",
13  "LEMON": "slices_t"
14  }
15 }
-
-
- -

◆ opera_header

- -
-
- - - - -
string test.opera_header
-
-Initial value:
1 = """#ifndef _GENERATED_OPERA_HPP
2 #define _GENERATED_OPERA_HPP
3 
4 namespace age
5 {
6 
7 template <typename T>
8 void typed_exec (_GENERATED_OPCODE opcode,
9  Out_Type out, ade::Shape shape, In_Type in)
10 {
11  switch (opcode)
12  {
13  case FOO:
14  bar2(out, in[1]); break;
15  case OP2:
16  bar1(out, shape, in); break;
17  case OP:
18  foo(out, shape); break;
19  default: err::fatal("unknown opcode");
20  }
21 }
22 
23 void op_exec (_GENERATED_OPCODE opcode, _GENERATED_DTYPE dtype,
24  Out_Type out, ade::Shape shape, In_Type in);
25 
26 }
27 
28 #endif // _GENERATED_OPERA_HPP
29 """
-
-
- -

◆ opera_source

- -
-
- - - - -
string test.opera_source
-
-Initial value:
1 = """#ifdef _GENERATED_OPERA_HPP
2 
3 namespace age
4 {
5 
6 void op_exec (_GENERATED_OPCODE opcode, _GENERATED_DTYPE dtype,
7  Out_Type out, ade::Shape shape, In_Type in)
8 {
9  switch (dtype)
10  {
11  case ORANGE:
12  typed_exec<seed_t>(opcode, out, shape, in); break;
13  case LEMON:
14  typed_exec<slices_t>(opcode, out, shape, in); break;
15  case APPLE:
16  typed_exec<skin_t>(opcode, out, shape, in); break;
17  case BANANA:
18  typed_exec<peel_t>(opcode, out, shape, in); break;
19  default: err::fatal("executing bad type");
20  }
21 }
22 
23 }
24 
25 #endif
26 """
-
-
-
- - - - diff --git a/docs/html/opera__tmpl_8py.html b/docs/html/opera__tmpl_8py.html deleted file mode 100644 index 40c29e186..000000000 --- a/docs/html/opera__tmpl_8py.html +++ /dev/null @@ -1,104 +0,0 @@ - - - - - - - -Tenncor: age/templates/opera_tmpl.py File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Namespaces | -Variables
-
-
opera_tmpl.py File Reference
-
-
- - - - -

-Namespaces

 opera_tmpl
 
- - - - - - - - - - - - - -

-Variables

 opera_tmpl.header = repr.FILE_REPR()
 
 opera_tmpl.data_in
 
 opera_tmpl.data_out
 
 opera_tmpl.ops
 
 opera_tmpl.source = repr.FILE_REPR()
 
 opera_tmpl.types
 
-
- - - - diff --git a/docs/html/opmap__dep_8hpp.html b/docs/html/opmap__dep_8hpp.html deleted file mode 100644 index 3842771bd..000000000 --- a/docs/html/opmap__dep_8hpp.html +++ /dev/null @@ -1,223 +0,0 @@ - - - - - - - -Tenncor: age/test/opmap_dep.hpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Functions | -Variables
-
-
opmap_dep.hpp File Reference
-
-
-
#include "ade/shape.hpp"
-
-Include dependency graph for opmap_dep.hpp:
-
-
- - - - - -
-
-

Go to the source code of this file.

- - - - - - -

-Classes

struct  Pomegranate
 
struct  SweetPotato
 
- - - - - - - -

-Functions

template<typename T >
void knees_weak (Pomegranate &in, ade::Shape shape, SweetPotato &out)
 
template<typename T >
void another_one (SweetPotato &out, Pomegranate &in, ade::Shape shape)
 
- - - - - -

-Variables

const size_t wraphash = 10
 
const size_t djidx = 34
 
-

Function Documentation

- -

◆ another_one()

- -
-
-
-template<typename T >
- - - - - - - - - - - - - - - - - - - - - - - - -
void another_one (SweetPotatoout,
Pomegranatein,
ade::Shape shape 
)
-
- -
-
- -

◆ knees_weak()

- -
-
-
-template<typename T >
- - - - - - - - - - - - - - - - - - - - - - - - -
void knees_weak (Pomegranatein,
ade::Shape shape,
SweetPotatoout 
)
-
- -
-
-

Variable Documentation

- -

◆ djidx

- -
-
- - - - -
const size_t djidx = 34
-
- -
-
- -

◆ wraphash

- -
-
- - - - -
const size_t wraphash = 10
-
- -
-
-
- - - - diff --git a/docs/html/opmap__dep_8hpp__incl.map b/docs/html/opmap__dep_8hpp__incl.map deleted file mode 100644 index fbefb1828..000000000 --- a/docs/html/opmap__dep_8hpp__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/docs/html/opmap__dep_8hpp__incl.md5 b/docs/html/opmap__dep_8hpp__incl.md5 deleted file mode 100644 index 560eb3fca..000000000 --- a/docs/html/opmap__dep_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -d4909914e9d9b8d8cef1ddbe27c6dd08 \ No newline at end of file diff --git a/docs/html/opmap__dep_8hpp__incl.png b/docs/html/opmap__dep_8hpp__incl.png deleted file mode 100644 index f50e61aa2..000000000 Binary files a/docs/html/opmap__dep_8hpp__incl.png and /dev/null differ diff --git a/docs/html/opmap__dep_8hpp_source.html b/docs/html/opmap__dep_8hpp_source.html deleted file mode 100644 index 41b3305d9..000000000 --- a/docs/html/opmap__dep_8hpp_source.html +++ /dev/null @@ -1,102 +0,0 @@ - - - - - - - -Tenncor: age/test/opmap_dep.hpp Source File - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
opmap_dep.hpp
-
-
-Go to the documentation of this file.
1 #include "ade/shape.hpp"
2 
3 #ifndef MOCK_OPMAP_DEP_HPP
4 #define MOCK_OPMAP_DEP_HPP
5 
6 const size_t wraphash = 10;
7 
8 const size_t djidx = 34;
9 
11 {
12  static size_t meat_hash (Meat meat)
13  {
14  return meat.num + meat.size;
15  }
16 
17  static size_t fries_hash (Fries fries)
18  {
19  return fries.num * fries.size;
20  }
21 
22  void mix (Meat meat)
23  {
24  type_ = "meat";
25  hash_ = meat_hash(meat);
26  }
27 
28  void mix (Fries fries)
29  {
30  type_ = "fries";
31  hash_ = fries_hash(fries);
32  }
33 
35  std::string type_;
36  size_t hash_;
37 };
38 
40 {
42 };
43 
44 template <typename T>
46 {
47  in.mix(T(10));
48  in.shape_ = shape;
49  out.pptr_ = &in;
50 }
51 
52 template <typename T>
54 {
55  in.mix(T(34));
56  in.shape_ = shape;
57  out.pptr_ = &in;
58 }
59 
60 #endif // MOCK_OPMAP_DEP_HPP
Pomegranate * pptr_
Definition: opmap_dep.hpp:41
-
Definition: codes_dep.hpp:14
-
double num
Definition: codes_dep.hpp:18
-
Definition: opmap_dep.hpp:10
-
void mix(Fries fries)
Definition: opmap_dep.hpp:28
-
const size_t wraphash
Definition: opmap_dep.hpp:6
-
void another_one(SweetPotato &out, Pomegranate &in, ade::Shape shape)
Definition: opmap_dep.hpp:53
- -
const size_t djidx
Definition: opmap_dep.hpp:8
-
void mix(Meat meat)
Definition: opmap_dep.hpp:22
-
uint64_t size
Definition: codes_dep.hpp:11
-
size_t hash_
Definition: opmap_dep.hpp:36
-
std::string type_
Definition: opmap_dep.hpp:35
-
static size_t meat_hash(Meat meat)
Definition: opmap_dep.hpp:12
-
Definition: shape.hpp:49
-
ade::Shape shape_
Definition: opmap_dep.hpp:34
-
void knees_weak(Pomegranate &in, ade::Shape shape, SweetPotato &out)
Definition: opmap_dep.hpp:45
-
int64_t num
Definition: codes_dep.hpp:10
-
char size
Definition: codes_dep.hpp:19
-
static size_t fries_hash(Fries fries)
Definition: opmap_dep.hpp:17
-
Definition: opmap_dep.hpp:39
-
Definition: codes_dep.hpp:6
-
- - - - diff --git a/docs/html/repr_8py.html b/docs/html/repr_8py.html deleted file mode 100644 index 2569979d2..000000000 --- a/docs/html/repr_8py.html +++ /dev/null @@ -1,94 +0,0 @@ - - - - - - - -Tenncor: age/templates/repr.py File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Namespaces
-
-
repr.py File Reference
-
-
- - - - -

-Classes

class  repr.FILE_REPR
 
- - - -

-Namespaces

 repr
 
-
- - - - diff --git a/docs/html/search/all_12.html b/docs/html/search/all_12.html deleted file mode 100644 index fd265245b..000000000 --- a/docs/html/search/all_12.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/all_12.js b/docs/html/search/all_12.js deleted file mode 100644 index 345d18783..000000000 --- a/docs/html/search/all_12.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['_7eicoordmap',['~iCoordMap',['../structade_1_1i_coord_map.html#a4e8f4d22d68fbf9512f97bfb4d317009',1,'ade::iCoordMap']]], - ['_7eifunctor',['~iFunctor',['../structade_1_1i_functor.html#a9f5aebb693faea7cc5a822ca403f40c0',1,'ade::iFunctor']]], - ['_7eileaf',['~iLeaf',['../structade_1_1i_leaf.html#a3aac6caf3028d56c722a8938f7b5ee71',1,'ade::iLeaf']]], - ['_7eilogger',['~iLogger',['../structerr_1_1i_logger.html#aefbf6af2d1cddb465061f9507a752c38',1,'err::iLogger']]], - ['_7eiruleset',['~iRuleSet',['../structage_1_1i_rule_set.html#a8f284d27d9f41586e9f21b2e329efe4b',1,'age::iRuleSet']]], - ['_7eitensor',['~iTensor',['../structade_1_1i_tensor.html#a1eb974b967ef2da732ee074e73631342',1,'ade::iTensor']]], - ['_7eitraveler',['~iTraveler',['../structade_1_1i_traveler.html#af8279cb7fbe1363298287f4e2061254a',1,'ade::iTraveler']]] -]; diff --git a/docs/html/search/all_13.html b/docs/html/search/all_13.html deleted file mode 100644 index 04f66e2fe..000000000 --- a/docs/html/search/all_13.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/all_13.js b/docs/html/search/all_13.js deleted file mode 100644 index 7d3893fad..000000000 --- a/docs/html/search/all_13.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['vector_5fassign',['vector_assign',['../structade_1_1_shape.html#ad84123094695df9886c8cc8f76d4d21e',1,'ade::Shape']]], - ['visit',['visit',['../structade_1_1i_traveler.html#a65fd050e7a346733f1eacc59eea299b1',1,'ade::iTraveler::visit(iLeaf *leaf)=0'],['../structade_1_1i_traveler.html#a6ae5c7df26de362b580a70928a3096dd',1,'ade::iTraveler::visit(iFunctor *func)=0'],['../structade_1_1_graph_stat.html#ab3376f6cde9c0d483a32ff63632acbc9',1,'ade::GraphStat::visit(iLeaf *leaf) override'],['../structade_1_1_graph_stat.html#af8a2799b9d659d088ae7a32815dd15fb',1,'ade::GraphStat::visit(iFunctor *func) override'],['../structade_1_1_path_finder.html#a56fd6fb9ab097926addcbb91e83ad778',1,'ade::PathFinder::visit(iLeaf *leaf) override'],['../structade_1_1_path_finder.html#a57a63c9dcad0c13df7af259622c9350b',1,'ade::PathFinder::visit(iFunctor *func) override'],['../structage_1_1_grader.html#a67b5b2024d39f93681b537c71b5d0673',1,'age::Grader::visit(ade::iLeaf *leaf) override'],['../structage_1_1_grader.html#ab7801ce5432bb20048f6e3f6c259bcce',1,'age::Grader::visit(ade::iFunctor *func) override']]] -]; diff --git a/docs/html/search/all_14.html b/docs/html/search/all_14.html deleted file mode 100644 index 285f34bd2..000000000 --- a/docs/html/search/all_14.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/all_14.js b/docs/html/search/all_14.js deleted file mode 100644 index 64f014995..000000000 --- a/docs/html/search/all_14.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['warn',['warn',['../structerr_1_1i_logger.html#afc84b9c02003627c8c44a9b0c38d2104',1,'err::iLogger::warn()'],['../structerr_1_1_def_logger.html#a38568d06607f984bd5b37a4603bab8f3',1,'err::DefLogger::warn()'],['../namespaceerr.html#a58dc074f29dba8e6cc470e6965ae3fd5',1,'err::warn()']]], - ['warn_5ftag',['warn_tag',['../namespaceerr.html#a1779a6fb41e44644c418535c4c55212a',1,'err']]], - ['warnf',['warnf',['../namespaceerr.html#a83c76b074d1d5f0749064600eeafd8d6',1,'err']]] -]; diff --git a/docs/html/search/all_15.html b/docs/html/search/all_15.html deleted file mode 100644 index 0ed74e012..000000000 --- a/docs/html/search/all_15.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/all_15.js b/docs/html/search/all_15.js deleted file mode 100644 index 345d18783..000000000 --- a/docs/html/search/all_15.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['_7eicoordmap',['~iCoordMap',['../structade_1_1i_coord_map.html#a4e8f4d22d68fbf9512f97bfb4d317009',1,'ade::iCoordMap']]], - ['_7eifunctor',['~iFunctor',['../structade_1_1i_functor.html#a9f5aebb693faea7cc5a822ca403f40c0',1,'ade::iFunctor']]], - ['_7eileaf',['~iLeaf',['../structade_1_1i_leaf.html#a3aac6caf3028d56c722a8938f7b5ee71',1,'ade::iLeaf']]], - ['_7eilogger',['~iLogger',['../structerr_1_1i_logger.html#aefbf6af2d1cddb465061f9507a752c38',1,'err::iLogger']]], - ['_7eiruleset',['~iRuleSet',['../structage_1_1i_rule_set.html#a8f284d27d9f41586e9f21b2e329efe4b',1,'age::iRuleSet']]], - ['_7eitensor',['~iTensor',['../structade_1_1i_tensor.html#a1eb974b967ef2da732ee074e73631342',1,'ade::iTensor']]], - ['_7eitraveler',['~iTraveler',['../structade_1_1i_traveler.html#af8279cb7fbe1363298287f4e2061254a',1,'ade::iTraveler']]] -]; diff --git a/docs/html/search/all_16.html b/docs/html/search/all_16.html deleted file mode 100644 index 696f02520..000000000 --- a/docs/html/search/all_16.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/all_16.js b/docs/html/search/all_16.js deleted file mode 100644 index 345d18783..000000000 --- a/docs/html/search/all_16.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['_7eicoordmap',['~iCoordMap',['../structade_1_1i_coord_map.html#a4e8f4d22d68fbf9512f97bfb4d317009',1,'ade::iCoordMap']]], - ['_7eifunctor',['~iFunctor',['../structade_1_1i_functor.html#a9f5aebb693faea7cc5a822ca403f40c0',1,'ade::iFunctor']]], - ['_7eileaf',['~iLeaf',['../structade_1_1i_leaf.html#a3aac6caf3028d56c722a8938f7b5ee71',1,'ade::iLeaf']]], - ['_7eilogger',['~iLogger',['../structerr_1_1i_logger.html#aefbf6af2d1cddb465061f9507a752c38',1,'err::iLogger']]], - ['_7eiruleset',['~iRuleSet',['../structage_1_1i_rule_set.html#a8f284d27d9f41586e9f21b2e329efe4b',1,'age::iRuleSet']]], - ['_7eitensor',['~iTensor',['../structade_1_1i_tensor.html#a1eb974b967ef2da732ee074e73631342',1,'ade::iTensor']]], - ['_7eitraveler',['~iTraveler',['../structade_1_1i_traveler.html#af8279cb7fbe1363298287f4e2061254a',1,'ade::iTraveler']]] -]; diff --git a/docs/html/search/classes_8.html b/docs/html/search/classes_8.html deleted file mode 100644 index 87af6f601..000000000 --- a/docs/html/search/classes_8.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/classes_8.js b/docs/html/search/classes_8.js deleted file mode 100644 index ad602f9ab..000000000 --- a/docs/html/search/classes_8.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['shape',['Shape',['../structade_1_1_shape.html',1,'ade']]] -]; diff --git a/docs/html/search/classes_9.html b/docs/html/search/classes_9.html deleted file mode 100644 index f830ae04b..000000000 --- a/docs/html/search/classes_9.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/classes_9.js b/docs/html/search/classes_9.js deleted file mode 100644 index f4bc1f9d4..000000000 --- a/docs/html/search/classes_9.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['shape',['Shape',['../structade_1_1_shape.html',1,'ade::Shape'],['../struct_s_h_a_p_e.html',1,'SHAPE']]], - ['sweetpotato',['SweetPotato',['../struct_sweet_potato.html',1,'']]] -]; diff --git a/docs/html/search/classes_a.html b/docs/html/search/classes_a.html deleted file mode 100644 index 0fd3b7ac3..000000000 --- a/docs/html/search/classes_a.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/classes_a.js b/docs/html/search/classes_a.js deleted file mode 100644 index 384391727..000000000 --- a/docs/html/search/classes_a.js +++ /dev/null @@ -1,6 +0,0 @@ -var searchData= -[ - ['tensor',['TENSOR',['../struct_t_e_n_s_o_r.html',1,'']]], - ['testlogger',['TestLogger',['../struct_test_logger.html',1,'']]], - ['traveler',['TRAVELER',['../struct_t_r_a_v_e_l_e_r.html',1,'']]] -]; diff --git a/docs/html/search/defines_0.html b/docs/html/search/defines_0.html deleted file mode 100644 index 3bffafa9b..000000000 --- a/docs/html/search/defines_0.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/defines_0.js b/docs/html/search/defines_0.js deleted file mode 100644 index e6a8589c5..000000000 --- a/docs/html/search/defines_0.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['ade_5fcoord_5fhpp',['ADE_COORD_HPP',['../coord_8hpp.html#af0fa2323b446db07c46b6318a8ac10d0',1,'coord.hpp']]], - ['ade_5ffunctor_5fhpp',['ADE_FUNCTOR_HPP',['../functor_8hpp.html#a646c8c5e369c97d29823863ca56374b0',1,'functor.hpp']]] -]; diff --git a/docs/html/search/defines_1.html b/docs/html/search/defines_1.html deleted file mode 100644 index ca5bb94e3..000000000 --- a/docs/html/search/defines_1.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/defines_1.js b/docs/html/search/defines_1.js deleted file mode 100644 index 5e3ac0269..000000000 --- a/docs/html/search/defines_1.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['bwd_5fgrader_5fhpp',['BWD_GRADER_HPP',['../grader_8hpp.html#acacaa7d4cc21b624f659d248df996989',1,'grader.hpp']]] -]; diff --git a/docs/html/search/defines_2.html b/docs/html/search/defines_2.html deleted file mode 100644 index 7cc1a74c0..000000000 --- a/docs/html/search/defines_2.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/defines_2.js b/docs/html/search/defines_2.js deleted file mode 100644 index 0350cb417..000000000 --- a/docs/html/search/defines_2.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['err_5flog_5fhpp',['ERR_LOG_HPP',['../log_8hpp.html#a787ef3c6f433baf13e162429f98fabc8',1,'log.hpp']]] -]; diff --git a/docs/html/search/files_9.html b/docs/html/search/files_9.html deleted file mode 100644 index cabcae2f8..000000000 --- a/docs/html/search/files_9.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/files_9.js b/docs/html/search/files_9.js deleted file mode 100644 index b23a9ca63..000000000 --- a/docs/html/search/files_9.js +++ /dev/null @@ -1,7 +0,0 @@ -var searchData= -[ - ['shape_2ecpp',['shape.cpp',['../shape_8cpp.html',1,'']]], - ['shape_2ehpp',['shape.hpp',['../shape_8hpp.html',1,'']]], - ['string_2ecpp',['string.cpp',['../string_8cpp.html',1,'']]], - ['string_2ehpp',['string.hpp',['../string_8hpp.html',1,'']]] -]; diff --git a/docs/html/search/files_a.html b/docs/html/search/files_a.html deleted file mode 100644 index f7402215c..000000000 --- a/docs/html/search/files_a.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/files_a.js b/docs/html/search/files_a.js deleted file mode 100644 index ab2a2347b..000000000 --- a/docs/html/search/files_a.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['test_2epy',['test.py',['../test_8py.html',1,'']]], - ['traveler_2ehpp',['traveler.hpp',['../traveler_8hpp.html',1,'']]] -]; diff --git a/docs/html/search/functions_11.html b/docs/html/search/functions_11.html deleted file mode 100644 index dd88d8b7e..000000000 --- a/docs/html/search/functions_11.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/functions_11.js b/docs/html/search/functions_11.js deleted file mode 100644 index 345d18783..000000000 --- a/docs/html/search/functions_11.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['_7eicoordmap',['~iCoordMap',['../structade_1_1i_coord_map.html#a4e8f4d22d68fbf9512f97bfb4d317009',1,'ade::iCoordMap']]], - ['_7eifunctor',['~iFunctor',['../structade_1_1i_functor.html#a9f5aebb693faea7cc5a822ca403f40c0',1,'ade::iFunctor']]], - ['_7eileaf',['~iLeaf',['../structade_1_1i_leaf.html#a3aac6caf3028d56c722a8938f7b5ee71',1,'ade::iLeaf']]], - ['_7eilogger',['~iLogger',['../structerr_1_1i_logger.html#aefbf6af2d1cddb465061f9507a752c38',1,'err::iLogger']]], - ['_7eiruleset',['~iRuleSet',['../structage_1_1i_rule_set.html#a8f284d27d9f41586e9f21b2e329efe4b',1,'age::iRuleSet']]], - ['_7eitensor',['~iTensor',['../structade_1_1i_tensor.html#a1eb974b967ef2da732ee074e73631342',1,'ade::iTensor']]], - ['_7eitraveler',['~iTraveler',['../structade_1_1i_traveler.html#af8279cb7fbe1363298287f4e2061254a',1,'ade::iTraveler']]] -]; diff --git a/docs/html/search/functions_12.html b/docs/html/search/functions_12.html deleted file mode 100644 index 7093d19fe..000000000 --- a/docs/html/search/functions_12.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/functions_12.js b/docs/html/search/functions_12.js deleted file mode 100644 index 9fa8ddfb8..000000000 --- a/docs/html/search/functions_12.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['warn',['warn',['../structerr_1_1i_logger.html#afc84b9c02003627c8c44a9b0c38d2104',1,'err::iLogger::warn()'],['../structerr_1_1_def_logger.html#a38568d06607f984bd5b37a4603bab8f3',1,'err::DefLogger::warn()'],['../namespaceerr.html#a58dc074f29dba8e6cc470e6965ae3fd5',1,'err::warn()']]], - ['warnf',['warnf',['../namespaceerr.html#a83c76b074d1d5f0749064600eeafd8d6',1,'err']]] -]; diff --git a/docs/html/search/functions_13.html b/docs/html/search/functions_13.html deleted file mode 100644 index 051a1eb82..000000000 --- a/docs/html/search/functions_13.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/functions_13.js b/docs/html/search/functions_13.js deleted file mode 100644 index 345d18783..000000000 --- a/docs/html/search/functions_13.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['_7eicoordmap',['~iCoordMap',['../structade_1_1i_coord_map.html#a4e8f4d22d68fbf9512f97bfb4d317009',1,'ade::iCoordMap']]], - ['_7eifunctor',['~iFunctor',['../structade_1_1i_functor.html#a9f5aebb693faea7cc5a822ca403f40c0',1,'ade::iFunctor']]], - ['_7eileaf',['~iLeaf',['../structade_1_1i_leaf.html#a3aac6caf3028d56c722a8938f7b5ee71',1,'ade::iLeaf']]], - ['_7eilogger',['~iLogger',['../structerr_1_1i_logger.html#aefbf6af2d1cddb465061f9507a752c38',1,'err::iLogger']]], - ['_7eiruleset',['~iRuleSet',['../structage_1_1i_rule_set.html#a8f284d27d9f41586e9f21b2e329efe4b',1,'age::iRuleSet']]], - ['_7eitensor',['~iTensor',['../structade_1_1i_tensor.html#a1eb974b967ef2da732ee074e73631342',1,'ade::iTensor']]], - ['_7eitraveler',['~iTraveler',['../structade_1_1i_traveler.html#af8279cb7fbe1363298287f4e2061254a',1,'ade::iTraveler']]] -]; diff --git a/docs/html/search/functions_14.html b/docs/html/search/functions_14.html deleted file mode 100644 index d5fdbda44..000000000 --- a/docs/html/search/functions_14.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/functions_14.js b/docs/html/search/functions_14.js deleted file mode 100644 index 6d48d33d7..000000000 --- a/docs/html/search/functions_14.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['warn',['warn',['../structerr_1_1i_logger.html#afc84b9c02003627c8c44a9b0c38d2104',1,'err::iLogger::warn()'],['../structerr_1_1_def_logger.html#a38568d06607f984bd5b37a4603bab8f3',1,'err::DefLogger::warn()'],['../struct_test_logger.html#accc25d91d021c85df7f3d1a5d98ebe16',1,'TestLogger::warn()'],['../namespaceerr.html#a58dc074f29dba8e6cc470e6965ae3fd5',1,'err::warn()']]], - ['warnf',['warnf',['../namespaceerr.html#a83c76b074d1d5f0749064600eeafd8d6',1,'err']]] -]; diff --git a/docs/html/search/functions_15.html b/docs/html/search/functions_15.html deleted file mode 100644 index 546d13e65..000000000 --- a/docs/html/search/functions_15.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/functions_15.js b/docs/html/search/functions_15.js deleted file mode 100644 index 345d18783..000000000 --- a/docs/html/search/functions_15.js +++ /dev/null @@ -1,10 +0,0 @@ -var searchData= -[ - ['_7eicoordmap',['~iCoordMap',['../structade_1_1i_coord_map.html#a4e8f4d22d68fbf9512f97bfb4d317009',1,'ade::iCoordMap']]], - ['_7eifunctor',['~iFunctor',['../structade_1_1i_functor.html#a9f5aebb693faea7cc5a822ca403f40c0',1,'ade::iFunctor']]], - ['_7eileaf',['~iLeaf',['../structade_1_1i_leaf.html#a3aac6caf3028d56c722a8938f7b5ee71',1,'ade::iLeaf']]], - ['_7eilogger',['~iLogger',['../structerr_1_1i_logger.html#aefbf6af2d1cddb465061f9507a752c38',1,'err::iLogger']]], - ['_7eiruleset',['~iRuleSet',['../structage_1_1i_rule_set.html#a8f284d27d9f41586e9f21b2e329efe4b',1,'age::iRuleSet']]], - ['_7eitensor',['~iTensor',['../structade_1_1i_tensor.html#a1eb974b967ef2da732ee074e73631342',1,'ade::iTensor']]], - ['_7eitraveler',['~iTraveler',['../structade_1_1i_traveler.html#af8279cb7fbe1363298287f4e2061254a',1,'ade::iTraveler']]] -]; diff --git a/docs/html/search/namespaces_1.html b/docs/html/search/namespaces_1.html deleted file mode 100644 index 37c816cc4..000000000 --- a/docs/html/search/namespaces_1.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/namespaces_1.js b/docs/html/search/namespaces_1.js deleted file mode 100644 index 339e61419..000000000 --- a/docs/html/search/namespaces_1.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['err',['err',['../namespaceerr.html',1,'']]] -]; diff --git a/docs/html/search/namespaces_2.html b/docs/html/search/namespaces_2.html deleted file mode 100644 index 0a9167460..000000000 --- a/docs/html/search/namespaces_2.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/namespaces_2.js b/docs/html/search/namespaces_2.js deleted file mode 100644 index 339e61419..000000000 --- a/docs/html/search/namespaces_2.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['err',['err',['../namespaceerr.html',1,'']]] -]; diff --git a/docs/html/search/namespaces_3.html b/docs/html/search/namespaces_3.html deleted file mode 100644 index 9c35eb2f9..000000000 --- a/docs/html/search/namespaces_3.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/namespaces_3.js b/docs/html/search/namespaces_3.js deleted file mode 100644 index 5dbd22d91..000000000 --- a/docs/html/search/namespaces_3.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['grader_5ftmpl',['grader_tmpl',['../namespacegrader__tmpl.html',1,'']]] -]; diff --git a/docs/html/search/namespaces_4.html b/docs/html/search/namespaces_4.html deleted file mode 100644 index 381233203..000000000 --- a/docs/html/search/namespaces_4.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/namespaces_4.js b/docs/html/search/namespaces_4.js deleted file mode 100644 index f0c7a5c9b..000000000 --- a/docs/html/search/namespaces_4.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['opera_5ftmpl',['opera_tmpl',['../namespaceopera__tmpl.html',1,'']]] -]; diff --git a/docs/html/search/namespaces_5.html b/docs/html/search/namespaces_5.html deleted file mode 100644 index 46ddb254f..000000000 --- a/docs/html/search/namespaces_5.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/namespaces_5.js b/docs/html/search/namespaces_5.js deleted file mode 100644 index 56d2704ab..000000000 --- a/docs/html/search/namespaces_5.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['repr',['repr',['../namespacerepr.html',1,'']]] -]; diff --git a/docs/html/search/namespaces_6.html b/docs/html/search/namespaces_6.html deleted file mode 100644 index 25c75178c..000000000 --- a/docs/html/search/namespaces_6.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/namespaces_6.js b/docs/html/search/namespaces_6.js deleted file mode 100644 index f0c003f8c..000000000 --- a/docs/html/search/namespaces_6.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['test',['test',['../namespacetest.html',1,'']]] -]; diff --git a/docs/html/search/pages_3.html b/docs/html/search/pages_3.html deleted file mode 100644 index f3746246f..000000000 --- a/docs/html/search/pages_3.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/pages_3.js b/docs/html/search/pages_3.js deleted file mode 100644 index 54dc59b9b..000000000 --- a/docs/html/search/pages_3.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['tenncor',['Tenncor',['../index.html',1,'']]] -]; diff --git a/docs/html/search/variables_10.html b/docs/html/search/variables_10.html deleted file mode 100644 index b62b717e9..000000000 --- a/docs/html/search/variables_10.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/variables_10.js b/docs/html/search/variables_10.js deleted file mode 100644 index 0ec55e2bc..000000000 --- a/docs/html/search/variables_10.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['warn_5ftag',['warn_tag',['../namespaceerr.html#a1779a6fb41e44644c418535c4c55212a',1,'err']]] -]; diff --git a/docs/html/search/variables_11.html b/docs/html/search/variables_11.html deleted file mode 100644 index 2ce8561a1..000000000 --- a/docs/html/search/variables_11.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/variables_11.js b/docs/html/search/variables_11.js deleted file mode 100644 index 890d8277b..000000000 --- a/docs/html/search/variables_11.js +++ /dev/null @@ -1,11 +0,0 @@ -var searchData= -[ - ['target_5f',['target_',['../structade_1_1_path_finder.html#ade3a284e63e52e2cf2ea395e9a512207',1,'ade::PathFinder::target_()'],['../structage_1_1_grader.html#aa18ea83d92bdfcb64268fc86c1385634',1,'age::Grader::target_()']]], - ['template',['template',['../classrepr_1_1_f_i_l_e___r_e_p_r.html#ad7cae5030b34f35fec0a0fee64a83d14',1,'repr::FILE_REPR']]], - ['tensor_5f',['tensor_',['../structade_1_1_mapped_tensor.html#aabd63daa33eaff88d036361a7d6d0343',1,'ade::MappedTensor']]], - ['tlogger',['tlogger',['../err_2test_2common_8hpp.html#aef40dbefb5f1f67b02b9d7b529c00a31',1,'tlogger(): main.cpp'],['../err_2test_2main_8cpp.html#aef40dbefb5f1f67b02b9d7b529c00a31',1,'tlogger(): main.cpp']]], - ['type2names',['type2names',['../namespacecodes__tmpl.html#a74dfda9c87b0364181afdc7144ac1331',1,'codes_tmpl']]], - ['type_5f',['type_',['../struct_pomegranate.html#a9ac11ef5f5022109e5ae497755255ed0',1,'Pomegranate']]], - ['type_5fsizes',['type_sizes',['../namespacecodes__tmpl.html#a2ec9915f52d9996b8e714370981b18c9',1,'codes_tmpl']]], - ['types',['types',['../namespaceopera__tmpl.html#a1f6fa30d7270764e06f3eea9e284ea9a',1,'opera_tmpl']]] -]; diff --git a/docs/html/search/variables_12.html b/docs/html/search/variables_12.html deleted file mode 100644 index bba5857f5..000000000 --- a/docs/html/search/variables_12.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/variables_12.js b/docs/html/search/variables_12.js deleted file mode 100644 index ebda3241d..000000000 --- a/docs/html/search/variables_12.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['val_5f',['val_',['../struct_mock_tensor.html#ae4beef0f3c9efcbd0fe60009bed80676',1,'MockTensor']]] -]; diff --git a/docs/html/search/variables_13.html b/docs/html/search/variables_13.html deleted file mode 100644 index c92cbcc31..000000000 --- a/docs/html/search/variables_13.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/variables_13.js b/docs/html/search/variables_13.js deleted file mode 100644 index 38ed9d9ed..000000000 --- a/docs/html/search/variables_13.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['warn_5ftag',['warn_tag',['../namespaceerr.html#a1779a6fb41e44644c418535c4c55212a',1,'err']]], - ['wraphash',['wraphash',['../opmap__dep_8hpp.html#a39937d54858b9714c3ea5d0ddac40333',1,'opmap_dep.hpp']]] -]; diff --git a/docs/html/search/variables_e.html b/docs/html/search/variables_e.html deleted file mode 100644 index 4a1c8a614..000000000 --- a/docs/html/search/variables_e.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/variables_e.js b/docs/html/search/variables_e.js deleted file mode 100644 index 21ad99bc3..000000000 --- a/docs/html/search/variables_e.js +++ /dev/null @@ -1,5 +0,0 @@ -var searchData= -[ - ['target_5f',['target_',['../structade_1_1_path_finder.html#ade3a284e63e52e2cf2ea395e9a512207',1,'ade::PathFinder::target_()'],['../structage_1_1_grader.html#aa18ea83d92bdfcb64268fc86c1385634',1,'age::Grader::target_()']]], - ['tensor_5f',['tensor_',['../structade_1_1_mapped_tensor.html#aabd63daa33eaff88d036361a7d6d0343',1,'ade::MappedTensor']]] -]; diff --git a/docs/html/search/variables_f.html b/docs/html/search/variables_f.html deleted file mode 100644 index cc86fb590..000000000 --- a/docs/html/search/variables_f.html +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - -
-
Loading...
-
- -
Searching...
-
No Matches
- -
- - diff --git a/docs/html/search/variables_f.js b/docs/html/search/variables_f.js deleted file mode 100644 index 0ec55e2bc..000000000 --- a/docs/html/search/variables_f.js +++ /dev/null @@ -1,4 +0,0 @@ -var searchData= -[ - ['warn_5ftag',['warn_tag',['../namespaceerr.html#a1779a6fb41e44644c418535c4c55212a',1,'err']]] -]; diff --git a/docs/html/string_8cpp.html b/docs/html/string_8cpp.html deleted file mode 100644 index 13a1c9435..000000000 --- a/docs/html/string_8cpp.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Tenncor: err/src/string.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
string.cpp File Reference
-
-
-
#include "err/string.hpp"
-
-Include dependency graph for string.cpp:
-
-
- - - -
-
- - - - diff --git a/docs/html/string_8cpp__incl.map b/docs/html/string_8cpp__incl.map deleted file mode 100644 index 3093442a6..000000000 --- a/docs/html/string_8cpp__incl.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/string_8cpp__incl.md5 b/docs/html/string_8cpp__incl.md5 deleted file mode 100644 index bc1c9dc64..000000000 --- a/docs/html/string_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -bc6c073e6288a2529f613ea8d941e470 \ No newline at end of file diff --git a/docs/html/string_8cpp__incl.png b/docs/html/string_8cpp__incl.png deleted file mode 100644 index ed2b6a5d6..000000000 Binary files a/docs/html/string_8cpp__incl.png and /dev/null differ diff --git a/docs/html/string_8hpp.html b/docs/html/string_8hpp.html deleted file mode 100644 index 75318a2a6..000000000 --- a/docs/html/string_8hpp.html +++ /dev/null @@ -1,170 +0,0 @@ - - - - - - - -Tenncor: err/string.hpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Namespaces | -Functions | -Variables
-
-
string.hpp File Reference
-
-
-
#include <algorithm>
-#include <string>
-#include <sstream>
-
-Include dependency graph for string.hpp:
-
-
-
-
-This graph shows which files directly or indirectly include this file:
-
-
- - - - - - - - - - - - - - - - - - -
-
-

Go to the source code of this file.

- - - - -

-Namespaces

 err
 
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Functions

void err::to_stream (std::ostream &s, const char *str)
 Stream C-style strings to s. More...
 
void err::to_stream (std::ostream &s, std::string str)
 Stream std::strings to s. More...
 
void err::to_stream (std::ostream &s, int8_t c)
 Stream byte-size integers and display as numbers to s. More...
 
void err::to_stream (std::ostream &s, uint8_t c)
 Stream byte-size unsigned integers and display as numbers to s. More...
 
template<typename T >
void err::to_stream (std::ostream &s, T val)
 Stream generic value to s. More...
 
template<typename Iterator >
void err::to_stream (std::ostream &s, Iterator begin, Iterator end)
 Stream values between iterators as an array. More...
 
template<typename T >
std::string err::to_string (T arg)
 Return string representation for common arguments. More...
 
template<typename Iterator >
std::string err::to_string (Iterator begin, Iterator end)
 Return string representation of values between iterators. More...
 
template<typename... ARGS>
std::string err::sprintf (std::string format, ARGS... args)
 Return std::string with snprintf formatting. More...
 
- - - - - - - - - - -

-Variables

const char err::arr_begin = '['
 Symbol for the start of an array as string. More...
 
const char err::arr_end = ']'
 Symbol for the end of an array as string. More...
 
const char err::arr_delim = '\\'
 Symbol for the delimter between elements of an array as string. More...
 
-
- - - - diff --git a/docs/html/string_8hpp__dep__incl.map b/docs/html/string_8hpp__dep__incl.map deleted file mode 100644 index d722b2a4e..000000000 --- a/docs/html/string_8hpp__dep__incl.map +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/docs/html/string_8hpp__dep__incl.md5 b/docs/html/string_8hpp__dep__incl.md5 deleted file mode 100644 index 43b3af84b..000000000 --- a/docs/html/string_8hpp__dep__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -ad0c9e360ecfc3b659f2b8af268cab5f \ No newline at end of file diff --git a/docs/html/string_8hpp__dep__incl.png b/docs/html/string_8hpp__dep__incl.png deleted file mode 100644 index cfbb133d7..000000000 Binary files a/docs/html/string_8hpp__dep__incl.png and /dev/null differ diff --git a/docs/html/string_8hpp__incl.map b/docs/html/string_8hpp__incl.map deleted file mode 100644 index b801c7f99..000000000 --- a/docs/html/string_8hpp__incl.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/string_8hpp__incl.md5 b/docs/html/string_8hpp__incl.md5 deleted file mode 100644 index f2845f570..000000000 --- a/docs/html/string_8hpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -de0f1057190982f665afcec40e853eb3 \ No newline at end of file diff --git a/docs/html/string_8hpp__incl.png b/docs/html/string_8hpp__incl.png deleted file mode 100644 index a0109e6c7..000000000 Binary files a/docs/html/string_8hpp__incl.png and /dev/null differ diff --git a/docs/html/string_8hpp_source.html b/docs/html/string_8hpp_source.html deleted file mode 100644 index 4edae689f..000000000 --- a/docs/html/string_8hpp_source.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Tenncor: err/string.hpp Source File - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
string.hpp
-
-
-Go to the documentation of this file.
1 
9 #include <algorithm>
10 #include <string>
11 #include <sstream>
12 
13 #ifndef ERR_STRING_HPP
14 #define ERR_STRING_HPP
15 
16 namespace err
17 {
18 
20 const char arr_begin = '[';
21 
23 const char arr_end = ']';
24 
26 const char arr_delim = '\\';
27 
29 void to_stream (std::ostream& s, const char* str);
30 
32 void to_stream (std::ostream& s, std::string str);
33 
35 void to_stream (std::ostream& s, int8_t c);
36 
38 void to_stream (std::ostream& s, uint8_t c);
39 
41 template <typename T>
42 void to_stream (std::ostream& s, T val)
43 {
44  s << val;
45 }
46 
48 template <typename Iterator>
49 void to_stream (std::ostream& s, Iterator begin, Iterator end)
50 {
51  s << arr_begin;
52  if (begin != end)
53  {
54  to_stream(s, *(begin++));
55  while (begin != end)
56  {
57  s << arr_delim;
58  to_stream(s, *(begin++));
59  }
60  }
61  s << arr_end;
62 }
63 
65 template <typename T>
66 std::string to_string (T arg)
67 {
68  std::stringstream ss;
69  to_stream(ss, arg);
70  return ss.str();
71 }
72 
74 template <typename Iterator>
75 std::string to_string (Iterator begin, Iterator end)
76 {
77  std::stringstream ss;
78  to_stream(ss, begin, end);
79  return ss.str();
80 }
81 
83 template <typename... ARGS>
84 std::string sprintf (std::string format, ARGS... args)
85 {
86  size_t n = std::snprintf(nullptr, 0, format.c_str(), args...) + 1;
87  char buf[n];
88  std::snprintf(buf, n, format.c_str(), args...);
89  return std::string(buf, buf + n - 1);
90 }
91 
92 }
93 
94 #endif // ERR_STRING_HPP
const char arr_begin
Symbol for the start of an array as string.
Definition: string.hpp:20
-
const char arr_end
Symbol for the end of an array as string.
Definition: string.hpp:23
-
Definition: log.hpp:17
-
std::string sprintf(std::string format, ARGS... args)
Return std::string with snprintf formatting.
Definition: string.hpp:84
-
void to_stream(std::ostream &s, const char *str)
Stream C-style strings to s.
-
const char arr_delim
Symbol for the delimter between elements of an array as string.
Definition: string.hpp:26
-
std::string to_string(T arg)
Return string representation for common arguments.
Definition: string.hpp:66
-
- - - - diff --git a/docs/html/struct_c_o_o_r_d-members.html b/docs/html/struct_c_o_o_r_d-members.html deleted file mode 100644 index dfbd10713..000000000 --- a/docs/html/struct_c_o_o_r_d-members.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
COORD Member List
-
-
- -

This is the complete list of members for COORD, including all inherited members.

- - -
TearDown(void)COORDinlinevirtual
- - - - diff --git a/docs/html/struct_c_o_o_r_d.html b/docs/html/struct_c_o_o_r_d.html deleted file mode 100644 index 748edacfb..000000000 --- a/docs/html/struct_c_o_o_r_d.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - -Tenncor: COORD Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Public Member Functions | -List of all members
-
-
COORD Struct Reference
-
-
-
-Inheritance diagram for COORD:
-
-
Inheritance graph
-
[legend]
-
-Collaboration diagram for COORD:
-
-
Collaboration graph
-
[legend]
- - - - -

-Public Member Functions

virtual void TearDown (void)
 
-

Member Function Documentation

- -

◆ TearDown()

- -
-
- - - - - -
- - - - - - - - -
virtual void COORD::TearDown (void )
-
-inlinevirtual
-
- -
-
-
The documentation for this struct was generated from the following file: -
- - - - diff --git a/docs/html/struct_c_o_o_r_d.png b/docs/html/struct_c_o_o_r_d.png deleted file mode 100644 index 78b1509d9..000000000 Binary files a/docs/html/struct_c_o_o_r_d.png and /dev/null differ diff --git a/docs/html/struct_c_o_o_r_d__coll__graph.map b/docs/html/struct_c_o_o_r_d__coll__graph.map deleted file mode 100644 index 06df7aa03..000000000 --- a/docs/html/struct_c_o_o_r_d__coll__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/struct_c_o_o_r_d__coll__graph.md5 b/docs/html/struct_c_o_o_r_d__coll__graph.md5 deleted file mode 100644 index 0f323c7b6..000000000 --- a/docs/html/struct_c_o_o_r_d__coll__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -4660dd36fc7a248d4f51cc01cce13e09 \ No newline at end of file diff --git a/docs/html/struct_c_o_o_r_d__coll__graph.png b/docs/html/struct_c_o_o_r_d__coll__graph.png deleted file mode 100644 index 7ee6bb54c..000000000 Binary files a/docs/html/struct_c_o_o_r_d__coll__graph.png and /dev/null differ diff --git a/docs/html/struct_c_o_o_r_d__inherit__graph.map b/docs/html/struct_c_o_o_r_d__inherit__graph.map deleted file mode 100644 index 06df7aa03..000000000 --- a/docs/html/struct_c_o_o_r_d__inherit__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/struct_c_o_o_r_d__inherit__graph.md5 b/docs/html/struct_c_o_o_r_d__inherit__graph.md5 deleted file mode 100644 index ad2b245f8..000000000 --- a/docs/html/struct_c_o_o_r_d__inherit__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -c22fd7510331b20f0d3bf5dc302c1d3e \ No newline at end of file diff --git a/docs/html/struct_c_o_o_r_d__inherit__graph.png b/docs/html/struct_c_o_o_r_d__inherit__graph.png deleted file mode 100644 index 7ee6bb54c..000000000 Binary files a/docs/html/struct_c_o_o_r_d__inherit__graph.png and /dev/null differ diff --git a/docs/html/struct_f_u_n_c_t_o_r.html b/docs/html/struct_f_u_n_c_t_o_r.html deleted file mode 100644 index de7421e2f..000000000 --- a/docs/html/struct_f_u_n_c_t_o_r.html +++ /dev/null @@ -1,89 +0,0 @@ - - - - - - - -Tenncor: FUNCTOR Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
FUNCTOR Struct Reference
-
-
-
-Inheritance diagram for FUNCTOR:
-
-
Inheritance graph
-
[legend]
-
-Collaboration diagram for FUNCTOR:
-
-
Collaboration graph
-
[legend]
-
The documentation for this struct was generated from the following file: -
- - - - diff --git a/docs/html/struct_f_u_n_c_t_o_r.png b/docs/html/struct_f_u_n_c_t_o_r.png deleted file mode 100644 index 4509e0b6d..000000000 Binary files a/docs/html/struct_f_u_n_c_t_o_r.png and /dev/null differ diff --git a/docs/html/struct_f_u_n_c_t_o_r__coll__graph.map b/docs/html/struct_f_u_n_c_t_o_r__coll__graph.map deleted file mode 100644 index 70406f69d..000000000 --- a/docs/html/struct_f_u_n_c_t_o_r__coll__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/struct_f_u_n_c_t_o_r__coll__graph.md5 b/docs/html/struct_f_u_n_c_t_o_r__coll__graph.md5 deleted file mode 100644 index dc1019658..000000000 --- a/docs/html/struct_f_u_n_c_t_o_r__coll__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -832ee6f7e6772bb04cd8f9bee26514cc \ No newline at end of file diff --git a/docs/html/struct_f_u_n_c_t_o_r__coll__graph.png b/docs/html/struct_f_u_n_c_t_o_r__coll__graph.png deleted file mode 100644 index f54f6a428..000000000 Binary files a/docs/html/struct_f_u_n_c_t_o_r__coll__graph.png and /dev/null differ diff --git a/docs/html/struct_f_u_n_c_t_o_r__inherit__graph.map b/docs/html/struct_f_u_n_c_t_o_r__inherit__graph.map deleted file mode 100644 index 70406f69d..000000000 --- a/docs/html/struct_f_u_n_c_t_o_r__inherit__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/struct_f_u_n_c_t_o_r__inherit__graph.md5 b/docs/html/struct_f_u_n_c_t_o_r__inherit__graph.md5 deleted file mode 100644 index 1da2d0c3c..000000000 --- a/docs/html/struct_f_u_n_c_t_o_r__inherit__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -9c15505974f08a4990dc8b5eb148bac9 \ No newline at end of file diff --git a/docs/html/struct_f_u_n_c_t_o_r__inherit__graph.png b/docs/html/struct_f_u_n_c_t_o_r__inherit__graph.png deleted file mode 100644 index f54f6a428..000000000 Binary files a/docs/html/struct_f_u_n_c_t_o_r__inherit__graph.png and /dev/null differ diff --git a/docs/html/struct_fries-members.html b/docs/html/struct_fries-members.html deleted file mode 100644 index aea91da4f..000000000 --- a/docs/html/struct_fries-members.html +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
Fries Member List
-
-
- -

This is the complete list of members for Fries, including all inherited members.

- - - - -
Fries(size_t idx)Friesinline
numFries
sizeFries
- - - - diff --git a/docs/html/struct_fries.html b/docs/html/struct_fries.html deleted file mode 100644 index 01beaf73c..000000000 --- a/docs/html/struct_fries.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - -Tenncor: Fries Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Public Member Functions | -Public Attributes | -List of all members
-
-
Fries Struct Reference
-
-
- -

#include <codes_dep.hpp>

- - - - -

-Public Member Functions

 Fries (size_t idx)
 
- - - - - -

-Public Attributes

double num
 
char size
 
-

Constructor & Destructor Documentation

- -

◆ Fries()

- -
-
- - - - - -
- - - - - - - - -
Fries::Fries (size_t idx)
-
-inline
-
- -
-
-

Member Data Documentation

- -

◆ num

- -
-
- - - - -
double Fries::num
-
- -
-
- -

◆ size

- -
-
- - - - -
char Fries::size
-
- -
-
-
The documentation for this struct was generated from the following file: -
- - - - diff --git a/docs/html/struct_l_o_g-members.html b/docs/html/struct_l_o_g-members.html deleted file mode 100644 index 07ea7823c..000000000 --- a/docs/html/struct_l_o_g-members.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
LOG Member List
-
-
- -

This is the complete list of members for LOG, including all inherited members.

- - -
TearDown(void) overrideLOGinlineprotected
- - - - diff --git a/docs/html/struct_l_o_g.html b/docs/html/struct_l_o_g.html deleted file mode 100644 index 765e21d03..000000000 --- a/docs/html/struct_l_o_g.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - -Tenncor: LOG Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Protected Member Functions | -List of all members
-
-
LOG Struct Reference
-
-
-
-Inheritance diagram for LOG:
-
-
Inheritance graph
-
[legend]
-
-Collaboration diagram for LOG:
-
-
Collaboration graph
-
[legend]
- - - - -

-Protected Member Functions

void TearDown (void) override
 
-

Member Function Documentation

- -

◆ TearDown()

- -
-
- - - - - -
- - - - - - - - -
void LOG::TearDown (void )
-
-inlineoverrideprotected
-
- -
-
-
The documentation for this struct was generated from the following file: -
- - - - diff --git a/docs/html/struct_l_o_g.png b/docs/html/struct_l_o_g.png deleted file mode 100644 index ef7fd3b0b..000000000 Binary files a/docs/html/struct_l_o_g.png and /dev/null differ diff --git a/docs/html/struct_l_o_g__coll__graph.map b/docs/html/struct_l_o_g__coll__graph.map deleted file mode 100644 index 74f100c94..000000000 --- a/docs/html/struct_l_o_g__coll__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/struct_l_o_g__coll__graph.md5 b/docs/html/struct_l_o_g__coll__graph.md5 deleted file mode 100644 index c66364631..000000000 --- a/docs/html/struct_l_o_g__coll__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -72c485e01b633b44f7f975cb049876f7 \ No newline at end of file diff --git a/docs/html/struct_l_o_g__coll__graph.png b/docs/html/struct_l_o_g__coll__graph.png deleted file mode 100644 index ef9c38273..000000000 Binary files a/docs/html/struct_l_o_g__coll__graph.png and /dev/null differ diff --git a/docs/html/struct_l_o_g__inherit__graph.map b/docs/html/struct_l_o_g__inherit__graph.map deleted file mode 100644 index 74f100c94..000000000 --- a/docs/html/struct_l_o_g__inherit__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/struct_l_o_g__inherit__graph.md5 b/docs/html/struct_l_o_g__inherit__graph.md5 deleted file mode 100644 index ed1455264..000000000 --- a/docs/html/struct_l_o_g__inherit__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -3469004839377bea7c92f07fc14193e7 \ No newline at end of file diff --git a/docs/html/struct_l_o_g__inherit__graph.png b/docs/html/struct_l_o_g__inherit__graph.png deleted file mode 100644 index ef9c38273..000000000 Binary files a/docs/html/struct_l_o_g__inherit__graph.png and /dev/null differ diff --git a/docs/html/struct_m_a_t_o_p_s-members.html b/docs/html/struct_m_a_t_o_p_s-members.html deleted file mode 100644 index bb2120f5a..000000000 --- a/docs/html/struct_m_a_t_o_p_s-members.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
MATOPS Member List
-
-
- -

This is the complete list of members for MATOPS, including all inherited members.

- - -
TearDown(void)MATOPSinlinevirtual
- - - - diff --git a/docs/html/struct_m_a_t_o_p_s.html b/docs/html/struct_m_a_t_o_p_s.html deleted file mode 100644 index c7310b20c..000000000 --- a/docs/html/struct_m_a_t_o_p_s.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - -Tenncor: MATOPS Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Public Member Functions | -List of all members
-
-
MATOPS Struct Reference
-
-
-
-Inheritance diagram for MATOPS:
-
-
Inheritance graph
-
[legend]
-
-Collaboration diagram for MATOPS:
-
-
Collaboration graph
-
[legend]
- - - - -

-Public Member Functions

virtual void TearDown (void)
 
-

Member Function Documentation

- -

◆ TearDown()

- -
-
- - - - - -
- - - - - - - - -
virtual void MATOPS::TearDown (void )
-
-inlinevirtual
-
- -
-
-
The documentation for this struct was generated from the following file: -
- - - - diff --git a/docs/html/struct_m_a_t_o_p_s.png b/docs/html/struct_m_a_t_o_p_s.png deleted file mode 100644 index 5222a3356..000000000 Binary files a/docs/html/struct_m_a_t_o_p_s.png and /dev/null differ diff --git a/docs/html/struct_m_a_t_o_p_s__coll__graph.map b/docs/html/struct_m_a_t_o_p_s__coll__graph.map deleted file mode 100644 index a9c3a5e0b..000000000 --- a/docs/html/struct_m_a_t_o_p_s__coll__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/struct_m_a_t_o_p_s__coll__graph.md5 b/docs/html/struct_m_a_t_o_p_s__coll__graph.md5 deleted file mode 100644 index b18484332..000000000 --- a/docs/html/struct_m_a_t_o_p_s__coll__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -8fae0c12a33a4092f3a68f4ba091a25b \ No newline at end of file diff --git a/docs/html/struct_m_a_t_o_p_s__coll__graph.png b/docs/html/struct_m_a_t_o_p_s__coll__graph.png deleted file mode 100644 index 6293f2b45..000000000 Binary files a/docs/html/struct_m_a_t_o_p_s__coll__graph.png and /dev/null differ diff --git a/docs/html/struct_m_a_t_o_p_s__inherit__graph.map b/docs/html/struct_m_a_t_o_p_s__inherit__graph.map deleted file mode 100644 index a9c3a5e0b..000000000 --- a/docs/html/struct_m_a_t_o_p_s__inherit__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/struct_m_a_t_o_p_s__inherit__graph.md5 b/docs/html/struct_m_a_t_o_p_s__inherit__graph.md5 deleted file mode 100644 index e6bd8ea8c..000000000 --- a/docs/html/struct_m_a_t_o_p_s__inherit__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -efb084980ab0a39197f2b904ae1793e7 \ No newline at end of file diff --git a/docs/html/struct_m_a_t_o_p_s__inherit__graph.png b/docs/html/struct_m_a_t_o_p_s__inherit__graph.png deleted file mode 100644 index 6293f2b45..000000000 Binary files a/docs/html/struct_m_a_t_o_p_s__inherit__graph.png and /dev/null differ diff --git a/docs/html/struct_meat-members.html b/docs/html/struct_meat-members.html deleted file mode 100644 index ce191fee0..000000000 --- a/docs/html/struct_meat-members.html +++ /dev/null @@ -1,82 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
Meat Member List
-
-
- -

This is the complete list of members for Meat, including all inherited members.

- - - - -
Meat(size_t idx)Meatinline
numMeat
sizeMeat
- - - - diff --git a/docs/html/struct_meat.html b/docs/html/struct_meat.html deleted file mode 100644 index 091fa98c2..000000000 --- a/docs/html/struct_meat.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - -Tenncor: Meat Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Public Member Functions | -Public Attributes | -List of all members
-
-
Meat Struct Reference
-
-
- -

#include <codes_dep.hpp>

- - - - -

-Public Member Functions

 Meat (size_t idx)
 
- - - - - -

-Public Attributes

int64_t num
 
uint64_t size
 
-

Constructor & Destructor Documentation

- -

◆ Meat()

- -
-
- - - - - -
- - - - - - - - -
Meat::Meat (size_t idx)
-
-inline
-
- -
-
-

Member Data Documentation

- -

◆ num

- -
-
- - - - -
int64_t Meat::num
-
- -
-
- -

◆ size

- -
-
- - - - -
uint64_t Meat::size
-
- -
-
-
The documentation for this struct was generated from the following file: -
- - - - diff --git a/docs/html/struct_mock_rule_set-members.html b/docs/html/struct_mock_rule_set-members.html deleted file mode 100644 index 0808c4434..000000000 --- a/docs/html/struct_mock_rule_set-members.html +++ /dev/null @@ -1,84 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
MockRuleSet Member List
-
-
- -

This is the complete list of members for MockRuleSet, including all inherited members.

- - - - - - -
data(double scalar, ade::Shape shape) overrideMockRuleSetinlinevirtual
grad_rule(size_t code, age::TensT args, size_t idx) overrideMockRuleSetinlinevirtual
prod_opcode(void) overrideMockRuleSetinlinevirtual
sum_opcode(void) overrideMockRuleSetinlinevirtual
~iRuleSet(void)=defaultage::iRuleSetvirtual
- - - - diff --git a/docs/html/struct_mock_rule_set.html b/docs/html/struct_mock_rule_set.html deleted file mode 100644 index ccd4fd2f6..000000000 --- a/docs/html/struct_mock_rule_set.html +++ /dev/null @@ -1,262 +0,0 @@ - - - - - - - -Tenncor: MockRuleSet Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Public Member Functions | -List of all members
-
-
MockRuleSet Struct Referencefinal
-
-
-
-Inheritance diagram for MockRuleSet:
-
-
Inheritance graph
- - - -
[legend]
-
-Collaboration diagram for MockRuleSet:
-
-
Collaboration graph
- - - -
[legend]
- - - - - - - - - - - - - - - - -

-Public Member Functions

ade::LeafptrT data (double scalar, ade::Shape shape) override
 Return tensor leaf containing scalar of specific shape. More...
 
ade::Opcode sum_opcode (void) override
 Return opcode representing nnary sum. More...
 
ade::Opcode prod_opcode (void) override
 Return opcode representing binary multiplication. More...
 
ade::TensptrT grad_rule (size_t code, age::TensT args, size_t idx) override
 
- Public Member Functions inherited from age::iRuleSet
virtual ~iRuleSet (void)=default
 
-

Member Function Documentation

- -

◆ data()

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
ade::LeafptrT MockRuleSet::data (double scalar,
ade::Shape shape 
)
-
-inlineoverridevirtual
-
- -

Return tensor leaf containing scalar of specific shape.

- -

Implements age::iRuleSet.

- -
-
- -

◆ grad_rule()

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - - - - - - - -
ade::TensptrT MockRuleSet::grad_rule (size_t code,
age::TensT args,
size_t idx 
)
-
-inlineoverridevirtual
-
-

Return chain rule of operation with respect to argument at idx specified by code given args

- -

Implements age::iRuleSet.

- -
-
- -

◆ prod_opcode()

- -
-
- - - - - -
- - - - - - - - -
ade::Opcode MockRuleSet::prod_opcode (void )
-
-inlineoverridevirtual
-
- -

Return opcode representing binary multiplication.

- -

Implements age::iRuleSet.

- -
-
- -

◆ sum_opcode()

- -
-
- - - - - -
- - - - - - - - -
ade::Opcode MockRuleSet::sum_opcode (void )
-
-inlineoverridevirtual
-
- -

Return opcode representing nnary sum.

- -

Implements age::iRuleSet.

- -
-
-
The documentation for this struct was generated from the following file: -
- - - - diff --git a/docs/html/struct_mock_rule_set.png b/docs/html/struct_mock_rule_set.png deleted file mode 100644 index 72b14408d..000000000 Binary files a/docs/html/struct_mock_rule_set.png and /dev/null differ diff --git a/docs/html/struct_mock_rule_set__coll__graph.map b/docs/html/struct_mock_rule_set__coll__graph.map deleted file mode 100644 index 6a1cd9a41..000000000 --- a/docs/html/struct_mock_rule_set__coll__graph.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/struct_mock_rule_set__coll__graph.md5 b/docs/html/struct_mock_rule_set__coll__graph.md5 deleted file mode 100644 index 32eb169aa..000000000 --- a/docs/html/struct_mock_rule_set__coll__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -0af763807f8148d48e06ae945a2fcd98 \ No newline at end of file diff --git a/docs/html/struct_mock_rule_set__coll__graph.png b/docs/html/struct_mock_rule_set__coll__graph.png deleted file mode 100644 index 66e33d0ce..000000000 Binary files a/docs/html/struct_mock_rule_set__coll__graph.png and /dev/null differ diff --git a/docs/html/struct_mock_rule_set__inherit__graph.map b/docs/html/struct_mock_rule_set__inherit__graph.map deleted file mode 100644 index 6a1cd9a41..000000000 --- a/docs/html/struct_mock_rule_set__inherit__graph.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/struct_mock_rule_set__inherit__graph.md5 b/docs/html/struct_mock_rule_set__inherit__graph.md5 deleted file mode 100644 index d3a4deaed..000000000 --- a/docs/html/struct_mock_rule_set__inherit__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -9ee8ac8bb37f116fe0e5f247b3bb450b \ No newline at end of file diff --git a/docs/html/struct_mock_rule_set__inherit__graph.png b/docs/html/struct_mock_rule_set__inherit__graph.png deleted file mode 100644 index 66e33d0ce..000000000 Binary files a/docs/html/struct_mock_rule_set__inherit__graph.png and /dev/null differ diff --git a/docs/html/struct_mock_tensor-members.html b/docs/html/struct_mock_tensor-members.html deleted file mode 100644 index b5e648c6c..000000000 --- a/docs/html/struct_mock_tensor-members.html +++ /dev/null @@ -1,105 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
MockTensor Member List
-
-
- -

This is the complete list of members for MockTensor, including all inherited members.

- - - - - - - - - - - - - - - - - - - - - - - - - - - -
accept(iTraveler &visiter) overrideade::iLeafinlinevirtual
data(void) overrideMockTensorinlinevirtual
data(void) const overrideMockTensorinlinevirtual
data(void) overrideMockTensorinlinevirtual
data(void) const overrideMockTensorinlinevirtual
data(void) overrideMockTensorinlinevirtual
data(void) const overrideMockTensorinlinevirtual
MockTensor(void)=defaultMockTensor
MockTensor(ade::Shape shape)MockTensorinline
MockTensor(double scalar, ade::Shape shape)MockTensorinline
MockTensor(void)=defaultMockTensor
MockTensor(ade::Shape shape)MockTensorinline
scalar_MockTensor
shape(void) const overrideMockTensorinlinevirtual
shape(void) const overrideMockTensorinlinevirtual
shape(void) const overrideMockTensorinlinevirtual
shape_MockTensor
to_string(void) const overrideMockTensorinlinevirtual
to_string(void) const overrideMockTensorinlinevirtual
to_string(void) const overrideMockTensorinlinevirtual
type_code(void) const overrideMockTensorinlinevirtual
type_code(void) const overrideMockTensorinlinevirtual
type_code(void) const overrideMockTensorinlinevirtual
val_MockTensor
~iLeaf(void)=defaultade::iLeafvirtual
~iTensor(void)=defaultade::iTensorvirtual
- - - - diff --git a/docs/html/struct_mock_tensor.html b/docs/html/struct_mock_tensor.html deleted file mode 100644 index 95024fb9c..000000000 --- a/docs/html/struct_mock_tensor.html +++ /dev/null @@ -1,818 +0,0 @@ - - - - - - - -Tenncor: MockTensor Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Public Member Functions | -Public Attributes | -List of all members
-
-
MockTensor Struct Referencefinal
-
-
- -

#include <common.hpp>

-
-Inheritance diagram for MockTensor:
-
-
Inheritance graph
- - - - -
[legend]
-
-Collaboration diagram for MockTensor:
-
-
Collaboration graph
- - - - - -
[legend]
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

-Public Member Functions

 MockTensor (void)=default
 
 MockTensor (ade::Shape shape)
 
const ade::Shapeshape (void) const override
 Return the shape held by this tensor. More...
 
std::string to_string (void) const override
 Return the string representation of the tensor. More...
 
void * data (void) override
 Return pointer to internal data. More...
 
const void * data (void) const override
 Return const pointer to internal data. More...
 
size_t type_code (void) const override
 Return data type encoding. More...
 
 MockTensor (double scalar, ade::Shape shape)
 
const ade::Shapeshape (void) const override
 Return the shape held by this tensor. More...
 
std::string to_string (void) const override
 Return the string representation of the tensor. More...
 
void * data (void) override
 Return pointer to internal data. More...
 
const void * data (void) const override
 Return const pointer to internal data. More...
 
size_t type_code (void) const override
 Return data type encoding. More...
 
 MockTensor (void)=default
 
 MockTensor (ade::Shape shape)
 
const ade::Shapeshape (void) const override
 Return the shape held by this tensor. More...
 
std::string to_string (void) const override
 Return the string representation of the tensor. More...
 
void * data (void) override
 Return pointer to internal data. More...
 
const void * data (void) const override
 Return const pointer to internal data. More...
 
size_t type_code (void) const override
 Return data type encoding. More...
 
- Public Member Functions inherited from ade::iLeaf
virtual ~iLeaf (void)=default
 
void accept (iTraveler &visiter) override
 Implementation of iTensor. More...
 
- Public Member Functions inherited from ade::iTensor
virtual ~iTensor (void)=default
 
- - - - - - - -

-Public Attributes

ade::Shape shape_
 
double scalar_
 
double val_
 
-

Constructor & Destructor Documentation

- -

◆ MockTensor() [1/5]

- -
-
- - - - - -
- - - - - - - - -
MockTensor::MockTensor (void )
-
-default
-
- -
-
- -

◆ MockTensor() [2/5]

- -
-
- - - - - -
- - - - - - - - -
MockTensor::MockTensor (ade::Shape shape)
-
-inline
-
- -
-
- -

◆ MockTensor() [3/5]

- -
-
- - - - - -
- - - - - - - - - - - - - - - - - - -
MockTensor::MockTensor (double scalar,
ade::Shape shape 
)
-
-inline
-
- -
-
- -

◆ MockTensor() [4/5]

- -
-
- - - - - -
- - - - - - - - -
MockTensor::MockTensor (void )
-
-default
-
- -
-
- -

◆ MockTensor() [5/5]

- -
-
- - - - - -
- - - - - - - - -
MockTensor::MockTensor (ade::Shape shape)
-
-inline
-
- -
-
-

Member Function Documentation

- -

◆ data() [1/6]

- -
-
- - - - - -
- - - - - - - - -
void* MockTensor::data (void )
-
-inlineoverridevirtual
-
- -

Return pointer to internal data.

- -

Implements ade::iLeaf.

- -
-
- -

◆ data() [2/6]

- -
-
- - - - - -
- - - - - - - - -
void* MockTensor::data (void )
-
-inlineoverridevirtual
-
- -

Return pointer to internal data.

- -

Implements ade::iLeaf.

- -
-
- -

◆ data() [3/6]

- -
-
- - - - - -
- - - - - - - - -
const void* MockTensor::data (void ) const
-
-inlineoverridevirtual
-
- -

Return const pointer to internal data.

- -

Implements ade::iLeaf.

- -
-
- -

◆ data() [4/6]

- -
-
- - - - - -
- - - - - - - - -
const void* MockTensor::data (void ) const
-
-inlineoverridevirtual
-
- -

Return const pointer to internal data.

- -

Implements ade::iLeaf.

- -
-
- -

◆ data() [5/6]

- -
-
- - - - - -
- - - - - - - - -
void* MockTensor::data (void )
-
-inlineoverridevirtual
-
- -

Return pointer to internal data.

- -

Implements ade::iLeaf.

- -
-
- -

◆ data() [6/6]

- -
-
- - - - - -
- - - - - - - - -
const void* MockTensor::data (void ) const
-
-inlineoverridevirtual
-
- -

Return const pointer to internal data.

- -

Implements ade::iLeaf.

- -
-
- -

◆ shape() [1/3]

- -
-
- - - - - -
- - - - - - - - -
const ade::Shape& MockTensor::shape (void ) const
-
-inlineoverridevirtual
-
- -

Return the shape held by this tensor.

- -

Implements ade::iTensor.

- -
-
- -

◆ shape() [2/3]

- -
-
- - - - - -
- - - - - - - - -
const ade::Shape& MockTensor::shape (void ) const
-
-inlineoverridevirtual
-
- -

Return the shape held by this tensor.

- -

Implements ade::iTensor.

- -
-
- -

◆ shape() [3/3]

- -
-
- - - - - -
- - - - - - - - -
const ade::Shape& MockTensor::shape (void ) const
-
-inlineoverridevirtual
-
- -

Return the shape held by this tensor.

- -

Implements ade::iTensor.

- -
-
- -

◆ to_string() [1/3]

- -
-
- - - - - -
- - - - - - - - -
std::string MockTensor::to_string (void ) const
-
-inlineoverridevirtual
-
- -

Return the string representation of the tensor.

- -

Implements ade::iTensor.

- -
-
- -

◆ to_string() [2/3]

- -
-
- - - - - -
- - - - - - - - -
std::string MockTensor::to_string (void ) const
-
-inlineoverridevirtual
-
- -

Return the string representation of the tensor.

- -

Implements ade::iTensor.

- -
-
- -

◆ to_string() [3/3]

- -
-
- - - - - -
- - - - - - - - -
std::string MockTensor::to_string (void ) const
-
-inlineoverridevirtual
-
- -

Return the string representation of the tensor.

- -

Implements ade::iTensor.

- -
-
- -

◆ type_code() [1/3]

- -
-
- - - - - -
- - - - - - - - -
size_t MockTensor::type_code (void ) const
-
-inlineoverridevirtual
-
- -

Return data type encoding.

- -

Implements ade::iLeaf.

- -
-
- -

◆ type_code() [2/3]

- -
-
- - - - - -
- - - - - - - - -
size_t MockTensor::type_code (void ) const
-
-inlineoverridevirtual
-
- -

Return data type encoding.

- -

Implements ade::iLeaf.

- -
-
- -

◆ type_code() [3/3]

- -
-
- - - - - -
- - - - - - - - -
size_t MockTensor::type_code (void ) const
-
-inlineoverridevirtual
-
- -

Return data type encoding.

- -

Implements ade::iLeaf.

- -
-
-

Member Data Documentation

- -

◆ scalar_

- -
-
- - - - -
double MockTensor::scalar_
-
- -
-
- -

◆ shape_

- -
-
- - - - -
ade::Shape MockTensor::shape_
-
- -
-
- -

◆ val_

- -
-
- - - - -
double MockTensor::val_
-
- -
-
-
The documentation for this struct was generated from the following files: -
- - - - diff --git a/docs/html/struct_mock_tensor.png b/docs/html/struct_mock_tensor.png deleted file mode 100644 index 971900748..000000000 Binary files a/docs/html/struct_mock_tensor.png and /dev/null differ diff --git a/docs/html/struct_mock_tensor__coll__graph.map b/docs/html/struct_mock_tensor__coll__graph.map deleted file mode 100644 index 3456b0e41..000000000 --- a/docs/html/struct_mock_tensor__coll__graph.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/docs/html/struct_mock_tensor__coll__graph.md5 b/docs/html/struct_mock_tensor__coll__graph.md5 deleted file mode 100644 index cfdee9c9b..000000000 --- a/docs/html/struct_mock_tensor__coll__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -8cbcb6e87d51d24d90d2130197086311 \ No newline at end of file diff --git a/docs/html/struct_mock_tensor__coll__graph.png b/docs/html/struct_mock_tensor__coll__graph.png deleted file mode 100644 index e91fc8d08..000000000 Binary files a/docs/html/struct_mock_tensor__coll__graph.png and /dev/null differ diff --git a/docs/html/struct_mock_tensor__inherit__graph.map b/docs/html/struct_mock_tensor__inherit__graph.map deleted file mode 100644 index bc29ba842..000000000 --- a/docs/html/struct_mock_tensor__inherit__graph.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/docs/html/struct_mock_tensor__inherit__graph.md5 b/docs/html/struct_mock_tensor__inherit__graph.md5 deleted file mode 100644 index ceebe4d18..000000000 --- a/docs/html/struct_mock_tensor__inherit__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -818e7d79918922bc09944e038a342b96 \ No newline at end of file diff --git a/docs/html/struct_mock_tensor__inherit__graph.png b/docs/html/struct_mock_tensor__inherit__graph.png deleted file mode 100644 index 8eae81426..000000000 Binary files a/docs/html/struct_mock_tensor__inherit__graph.png and /dev/null differ diff --git a/docs/html/struct_pomegranate-members.html b/docs/html/struct_pomegranate-members.html deleted file mode 100644 index ca15ae38d..000000000 --- a/docs/html/struct_pomegranate-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
Pomegranate Member List
-
-
- -

This is the complete list of members for Pomegranate, including all inherited members.

- - - - - - - - -
fries_hash(Fries fries)Pomegranateinlinestatic
hash_Pomegranate
meat_hash(Meat meat)Pomegranateinlinestatic
mix(Meat meat)Pomegranateinline
mix(Fries fries)Pomegranateinline
shape_Pomegranate
type_Pomegranate
- - - - diff --git a/docs/html/struct_pomegranate.html b/docs/html/struct_pomegranate.html deleted file mode 100644 index fc8b381ba..000000000 --- a/docs/html/struct_pomegranate.html +++ /dev/null @@ -1,266 +0,0 @@ - - - - - - - -Tenncor: Pomegranate Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Public Member Functions | -Static Public Member Functions | -Public Attributes | -List of all members
-
-
Pomegranate Struct Reference
-
-
- -

#include <opmap_dep.hpp>

-
-Collaboration diagram for Pomegranate:
-
-
Collaboration graph
- - - -
[legend]
- - - - - - -

-Public Member Functions

void mix (Meat meat)
 
void mix (Fries fries)
 
- - - - - -

-Static Public Member Functions

static size_t meat_hash (Meat meat)
 
static size_t fries_hash (Fries fries)
 
- - - - - - - -

-Public Attributes

ade::Shape shape_
 
std::string type_
 
size_t hash_
 
-

Member Function Documentation

- -

◆ fries_hash()

- -
-
- - - - - -
- - - - - - - - -
static size_t Pomegranate::fries_hash (Fries fries)
-
-inlinestatic
-
- -
-
- -

◆ meat_hash()

- -
-
- - - - - -
- - - - - - - - -
static size_t Pomegranate::meat_hash (Meat meat)
-
-inlinestatic
-
- -
-
- -

◆ mix() [1/2]

- -
-
- - - - - -
- - - - - - - - -
void Pomegranate::mix (Meat meat)
-
-inline
-
- -
-
- -

◆ mix() [2/2]

- -
-
- - - - - -
- - - - - - - - -
void Pomegranate::mix (Fries fries)
-
-inline
-
- -
-
-

Member Data Documentation

- -

◆ hash_

- -
-
- - - - -
size_t Pomegranate::hash_
-
- -
-
- -

◆ shape_

- -
-
- - - - -
ade::Shape Pomegranate::shape_
-
- -
-
- -

◆ type_

- -
-
- - - - -
std::string Pomegranate::type_
-
- -
-
-
The documentation for this struct was generated from the following file: -
- - - - diff --git a/docs/html/struct_pomegranate__coll__graph.map b/docs/html/struct_pomegranate__coll__graph.map deleted file mode 100644 index f64f122b9..000000000 --- a/docs/html/struct_pomegranate__coll__graph.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/struct_pomegranate__coll__graph.md5 b/docs/html/struct_pomegranate__coll__graph.md5 deleted file mode 100644 index 186619add..000000000 --- a/docs/html/struct_pomegranate__coll__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -8c02c2022375432d9a78a57e7b55d303 \ No newline at end of file diff --git a/docs/html/struct_pomegranate__coll__graph.png b/docs/html/struct_pomegranate__coll__graph.png deleted file mode 100644 index d0af7b8d6..000000000 Binary files a/docs/html/struct_pomegranate__coll__graph.png and /dev/null differ diff --git a/docs/html/struct_s_h_a_p_e-members.html b/docs/html/struct_s_h_a_p_e-members.html deleted file mode 100644 index b2eaad6b5..000000000 --- a/docs/html/struct_s_h_a_p_e-members.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
SHAPE Member List
-
-
- -

This is the complete list of members for SHAPE, including all inherited members.

- - -
TearDown(void)SHAPEinlinevirtual
- - - - diff --git a/docs/html/struct_s_h_a_p_e.html b/docs/html/struct_s_h_a_p_e.html deleted file mode 100644 index 2159fda65..000000000 --- a/docs/html/struct_s_h_a_p_e.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - -Tenncor: SHAPE Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Public Member Functions | -List of all members
-
-
SHAPE Struct Reference
-
-
-
-Inheritance diagram for SHAPE:
-
-
Inheritance graph
-
[legend]
-
-Collaboration diagram for SHAPE:
-
-
Collaboration graph
-
[legend]
- - - - -

-Public Member Functions

virtual void TearDown (void)
 
-

Member Function Documentation

- -

◆ TearDown()

- -
-
- - - - - -
- - - - - - - - -
virtual void SHAPE::TearDown (void )
-
-inlinevirtual
-
- -
-
-
The documentation for this struct was generated from the following file: -
- - - - diff --git a/docs/html/struct_s_h_a_p_e.png b/docs/html/struct_s_h_a_p_e.png deleted file mode 100644 index d8db32302..000000000 Binary files a/docs/html/struct_s_h_a_p_e.png and /dev/null differ diff --git a/docs/html/struct_s_h_a_p_e__coll__graph.map b/docs/html/struct_s_h_a_p_e__coll__graph.map deleted file mode 100644 index 496db4fd5..000000000 --- a/docs/html/struct_s_h_a_p_e__coll__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/struct_s_h_a_p_e__coll__graph.md5 b/docs/html/struct_s_h_a_p_e__coll__graph.md5 deleted file mode 100644 index c336a09ba..000000000 --- a/docs/html/struct_s_h_a_p_e__coll__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -8b3f91c39824367758eda8267d8bcd5f \ No newline at end of file diff --git a/docs/html/struct_s_h_a_p_e__coll__graph.png b/docs/html/struct_s_h_a_p_e__coll__graph.png deleted file mode 100644 index 2b042971a..000000000 Binary files a/docs/html/struct_s_h_a_p_e__coll__graph.png and /dev/null differ diff --git a/docs/html/struct_s_h_a_p_e__inherit__graph.map b/docs/html/struct_s_h_a_p_e__inherit__graph.map deleted file mode 100644 index 496db4fd5..000000000 --- a/docs/html/struct_s_h_a_p_e__inherit__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/struct_s_h_a_p_e__inherit__graph.md5 b/docs/html/struct_s_h_a_p_e__inherit__graph.md5 deleted file mode 100644 index 27529dbfb..000000000 --- a/docs/html/struct_s_h_a_p_e__inherit__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -d8838ced7a1ba8a46bddaf440d651a91 \ No newline at end of file diff --git a/docs/html/struct_s_h_a_p_e__inherit__graph.png b/docs/html/struct_s_h_a_p_e__inherit__graph.png deleted file mode 100644 index 2b042971a..000000000 Binary files a/docs/html/struct_s_h_a_p_e__inherit__graph.png and /dev/null differ diff --git a/docs/html/struct_sweet_potato-members.html b/docs/html/struct_sweet_potato-members.html deleted file mode 100644 index e7e11bb54..000000000 --- a/docs/html/struct_sweet_potato-members.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
SweetPotato Member List
-
-
- -

This is the complete list of members for SweetPotato, including all inherited members.

- - -
pptr_SweetPotato
- - - - diff --git a/docs/html/struct_sweet_potato.html b/docs/html/struct_sweet_potato.html deleted file mode 100644 index f6d6a5f45..000000000 --- a/docs/html/struct_sweet_potato.html +++ /dev/null @@ -1,114 +0,0 @@ - - - - - - - -Tenncor: SweetPotato Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Public Attributes | -List of all members
-
-
SweetPotato Struct Reference
-
-
- -

#include <opmap_dep.hpp>

-
-Collaboration diagram for SweetPotato:
-
-
Collaboration graph
- - - - -
[legend]
- - - - -

-Public Attributes

Pomegranatepptr_
 
-

Member Data Documentation

- -

◆ pptr_

- -
-
- - - - -
Pomegranate* SweetPotato::pptr_
-
- -
-
-
The documentation for this struct was generated from the following file: -
- - - - diff --git a/docs/html/struct_sweet_potato__coll__graph.map b/docs/html/struct_sweet_potato__coll__graph.map deleted file mode 100644 index 285face14..000000000 --- a/docs/html/struct_sweet_potato__coll__graph.map +++ /dev/null @@ -1,4 +0,0 @@ - - - - diff --git a/docs/html/struct_sweet_potato__coll__graph.md5 b/docs/html/struct_sweet_potato__coll__graph.md5 deleted file mode 100644 index a6e2cc980..000000000 --- a/docs/html/struct_sweet_potato__coll__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -07b85aaa64e417b5362086df6f2781b6 \ No newline at end of file diff --git a/docs/html/struct_sweet_potato__coll__graph.png b/docs/html/struct_sweet_potato__coll__graph.png deleted file mode 100644 index 9cfa4c7f8..000000000 Binary files a/docs/html/struct_sweet_potato__coll__graph.png and /dev/null differ diff --git a/docs/html/struct_t_e_n_s_o_r-members.html b/docs/html/struct_t_e_n_s_o_r-members.html deleted file mode 100644 index 5f1eecdd1..000000000 --- a/docs/html/struct_t_e_n_s_o_r-members.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
TENSOR Member List
-
-
- -

This is the complete list of members for TENSOR, including all inherited members.

- - -
TearDown(void)TENSORinlinevirtual
- - - - diff --git a/docs/html/struct_t_e_n_s_o_r.html b/docs/html/struct_t_e_n_s_o_r.html deleted file mode 100644 index c626f9f22..000000000 --- a/docs/html/struct_t_e_n_s_o_r.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - -Tenncor: TENSOR Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Public Member Functions | -List of all members
-
-
TENSOR Struct Reference
-
-
-
-Inheritance diagram for TENSOR:
-
-
Inheritance graph
-
[legend]
-
-Collaboration diagram for TENSOR:
-
-
Collaboration graph
-
[legend]
- - - - -

-Public Member Functions

virtual void TearDown (void)
 
-

Member Function Documentation

- -

◆ TearDown()

- -
-
- - - - - -
- - - - - - - - -
virtual void TENSOR::TearDown (void )
-
-inlinevirtual
-
- -
-
-
The documentation for this struct was generated from the following file: -
- - - - diff --git a/docs/html/struct_t_e_n_s_o_r.png b/docs/html/struct_t_e_n_s_o_r.png deleted file mode 100644 index 5368ecf76..000000000 Binary files a/docs/html/struct_t_e_n_s_o_r.png and /dev/null differ diff --git a/docs/html/struct_t_e_n_s_o_r__coll__graph.map b/docs/html/struct_t_e_n_s_o_r__coll__graph.map deleted file mode 100644 index 24dabd69b..000000000 --- a/docs/html/struct_t_e_n_s_o_r__coll__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/struct_t_e_n_s_o_r__coll__graph.md5 b/docs/html/struct_t_e_n_s_o_r__coll__graph.md5 deleted file mode 100644 index 458675703..000000000 --- a/docs/html/struct_t_e_n_s_o_r__coll__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -7799f628b6834b92641eb5867383f5f9 \ No newline at end of file diff --git a/docs/html/struct_t_e_n_s_o_r__coll__graph.png b/docs/html/struct_t_e_n_s_o_r__coll__graph.png deleted file mode 100644 index 956ab458d..000000000 Binary files a/docs/html/struct_t_e_n_s_o_r__coll__graph.png and /dev/null differ diff --git a/docs/html/struct_t_e_n_s_o_r__inherit__graph.map b/docs/html/struct_t_e_n_s_o_r__inherit__graph.map deleted file mode 100644 index 24dabd69b..000000000 --- a/docs/html/struct_t_e_n_s_o_r__inherit__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/struct_t_e_n_s_o_r__inherit__graph.md5 b/docs/html/struct_t_e_n_s_o_r__inherit__graph.md5 deleted file mode 100644 index 8dde3b994..000000000 --- a/docs/html/struct_t_e_n_s_o_r__inherit__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -4430f9ddadd73e2c01ab35b4ed6415cf \ No newline at end of file diff --git a/docs/html/struct_t_e_n_s_o_r__inherit__graph.png b/docs/html/struct_t_e_n_s_o_r__inherit__graph.png deleted file mode 100644 index 956ab458d..000000000 Binary files a/docs/html/struct_t_e_n_s_o_r__inherit__graph.png and /dev/null differ diff --git a/docs/html/struct_t_r_a_v_e_l_e_r-members.html b/docs/html/struct_t_r_a_v_e_l_e_r-members.html deleted file mode 100644 index f4babf503..000000000 --- a/docs/html/struct_t_r_a_v_e_l_e_r-members.html +++ /dev/null @@ -1,80 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
TRAVELER Member List
-
-
- -

This is the complete list of members for TRAVELER, including all inherited members.

- - -
TearDown(void)TRAVELERinlinevirtual
- - - - diff --git a/docs/html/struct_t_r_a_v_e_l_e_r.html b/docs/html/struct_t_r_a_v_e_l_e_r.html deleted file mode 100644 index 7324d4562..000000000 --- a/docs/html/struct_t_r_a_v_e_l_e_r.html +++ /dev/null @@ -1,125 +0,0 @@ - - - - - - - -Tenncor: TRAVELER Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Public Member Functions | -List of all members
-
-
TRAVELER Struct Reference
-
-
-
-Inheritance diagram for TRAVELER:
-
-
Inheritance graph
-
[legend]
-
-Collaboration diagram for TRAVELER:
-
-
Collaboration graph
-
[legend]
- - - - -

-Public Member Functions

virtual void TearDown (void)
 
-

Member Function Documentation

- -

◆ TearDown()

- -
-
- - - - - -
- - - - - - - - -
virtual void TRAVELER::TearDown (void )
-
-inlinevirtual
-
- -
-
-
The documentation for this struct was generated from the following file: -
- - - - diff --git a/docs/html/struct_t_r_a_v_e_l_e_r.png b/docs/html/struct_t_r_a_v_e_l_e_r.png deleted file mode 100644 index 0f184351c..000000000 Binary files a/docs/html/struct_t_r_a_v_e_l_e_r.png and /dev/null differ diff --git a/docs/html/struct_t_r_a_v_e_l_e_r__coll__graph.map b/docs/html/struct_t_r_a_v_e_l_e_r__coll__graph.map deleted file mode 100644 index a3ec9459a..000000000 --- a/docs/html/struct_t_r_a_v_e_l_e_r__coll__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/struct_t_r_a_v_e_l_e_r__coll__graph.md5 b/docs/html/struct_t_r_a_v_e_l_e_r__coll__graph.md5 deleted file mode 100644 index 0827c56b4..000000000 --- a/docs/html/struct_t_r_a_v_e_l_e_r__coll__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -d3e1f6edf1f2bee63d183a9afdd05348 \ No newline at end of file diff --git a/docs/html/struct_t_r_a_v_e_l_e_r__coll__graph.png b/docs/html/struct_t_r_a_v_e_l_e_r__coll__graph.png deleted file mode 100644 index 8d27314e0..000000000 Binary files a/docs/html/struct_t_r_a_v_e_l_e_r__coll__graph.png and /dev/null differ diff --git a/docs/html/struct_t_r_a_v_e_l_e_r__inherit__graph.map b/docs/html/struct_t_r_a_v_e_l_e_r__inherit__graph.map deleted file mode 100644 index a3ec9459a..000000000 --- a/docs/html/struct_t_r_a_v_e_l_e_r__inherit__graph.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/struct_t_r_a_v_e_l_e_r__inherit__graph.md5 b/docs/html/struct_t_r_a_v_e_l_e_r__inherit__graph.md5 deleted file mode 100644 index 5380a57cf..000000000 --- a/docs/html/struct_t_r_a_v_e_l_e_r__inherit__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -40ff16f521d19dd530f636a4793dcfa8 \ No newline at end of file diff --git a/docs/html/struct_t_r_a_v_e_l_e_r__inherit__graph.png b/docs/html/struct_t_r_a_v_e_l_e_r__inherit__graph.png deleted file mode 100644 index 8d27314e0..000000000 Binary files a/docs/html/struct_t_r_a_v_e_l_e_r__inherit__graph.png and /dev/null differ diff --git a/docs/html/struct_test_logger-members.html b/docs/html/struct_test_logger-members.html deleted file mode 100644 index 1efd3d17a..000000000 --- a/docs/html/struct_test_logger-members.html +++ /dev/null @@ -1,86 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-
TestLogger Member List
-
-
- -

This is the complete list of members for TestLogger, including all inherited members.

- - - - - - - - -
error(std::string msg) const overrideTestLoggerinlinevirtual
fatal(std::string msg) const overrideTestLoggerinlinevirtual
latest_error_TestLoggerstatic
latest_fatal_TestLoggerstatic
latest_warning_TestLoggerstatic
warn(std::string msg) const overrideTestLoggerinlinevirtual
~iLogger(void)=defaulterr::iLoggervirtual
- - - - diff --git a/docs/html/struct_test_logger.html b/docs/html/struct_test_logger.html deleted file mode 100644 index 2da666264..000000000 --- a/docs/html/struct_test_logger.html +++ /dev/null @@ -1,285 +0,0 @@ - - - - - - - -Tenncor: TestLogger Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- -
-
-
-Public Member Functions | -Static Public Attributes | -List of all members
-
-
TestLogger Struct Reference
-
-
- -

#include <common.hpp>

-
-Inheritance diagram for TestLogger:
-
-
Inheritance graph
- - - -
[legend]
-
-Collaboration diagram for TestLogger:
-
-
Collaboration graph
- - - -
[legend]
- - - - - - - - - - - - - - -

-Public Member Functions

void warn (std::string msg) const override
 Warn user of message regarding poor decisions. More...
 
void error (std::string msg) const override
 Notify user of message regarding recoverable error. More...
 
void fatal (std::string msg) const override
 Notify user of message regarding fatal error, then finish him. More...
 
- Public Member Functions inherited from err::iLogger
virtual ~iLogger (void)=default
 
- - - - - - - -

-Static Public Attributes

static std::string latest_warning_
 
static std::string latest_error_
 
static std::string latest_fatal_
 
-

Member Function Documentation

- -

◆ error()

- -
-
- - - - - -
- - - - - - - - -
void TestLogger::error (std::string msg) const
-
-inlineoverridevirtual
-
- -

Notify user of message regarding recoverable error.

- -

Implements err::iLogger.

- -
-
- -

◆ fatal()

- -
-
- - - - - -
- - - - - - - - -
void TestLogger::fatal (std::string msg) const
-
-inlineoverridevirtual
-
- -

Notify user of message regarding fatal error, then finish him.

- -

Implements err::iLogger.

- -
-
- -

◆ warn()

- -
-
- - - - - -
- - - - - - - - -
void TestLogger::warn (std::string msg) const
-
-inlineoverridevirtual
-
- -

Warn user of message regarding poor decisions.

- -

Implements err::iLogger.

- -
-
-

Member Data Documentation

- -

◆ latest_error_

- -
-
- - - - - -
- - - - -
std::string TestLogger::latest_error_
-
-static
-
- -
-
- -

◆ latest_fatal_

- -
-
- - - - - -
- - - - -
std::string TestLogger::latest_fatal_
-
-static
-
- -
-
- -

◆ latest_warning_

- -
-
- - - - - -
- - - - -
std::string TestLogger::latest_warning_
-
-static
-
- -
-
-
The documentation for this struct was generated from the following files: -
- - - - diff --git a/docs/html/struct_test_logger.png b/docs/html/struct_test_logger.png deleted file mode 100644 index 7e17ee387..000000000 Binary files a/docs/html/struct_test_logger.png and /dev/null differ diff --git a/docs/html/struct_test_logger__coll__graph.map b/docs/html/struct_test_logger__coll__graph.map deleted file mode 100644 index 5414d1e4d..000000000 --- a/docs/html/struct_test_logger__coll__graph.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/struct_test_logger__coll__graph.md5 b/docs/html/struct_test_logger__coll__graph.md5 deleted file mode 100644 index e1907721e..000000000 --- a/docs/html/struct_test_logger__coll__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -f86f4875b2402adac72cedc3538ebfb2 \ No newline at end of file diff --git a/docs/html/struct_test_logger__coll__graph.png b/docs/html/struct_test_logger__coll__graph.png deleted file mode 100644 index 478820df6..000000000 Binary files a/docs/html/struct_test_logger__coll__graph.png and /dev/null differ diff --git a/docs/html/struct_test_logger__inherit__graph.map b/docs/html/struct_test_logger__inherit__graph.map deleted file mode 100644 index 5414d1e4d..000000000 --- a/docs/html/struct_test_logger__inherit__graph.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/struct_test_logger__inherit__graph.md5 b/docs/html/struct_test_logger__inherit__graph.md5 deleted file mode 100644 index 9dfab4572..000000000 --- a/docs/html/struct_test_logger__inherit__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -b107d47358f19820ab2f447547f6e761 \ No newline at end of file diff --git a/docs/html/struct_test_logger__inherit__graph.png b/docs/html/struct_test_logger__inherit__graph.png deleted file mode 100644 index 478820df6..000000000 Binary files a/docs/html/struct_test_logger__inherit__graph.png and /dev/null differ diff --git a/docs/html/structade_1_1_coord_map.png b/docs/html/structade_1_1_coord_map.png deleted file mode 100644 index 3862d4577..000000000 Binary files a/docs/html/structade_1_1_coord_map.png and /dev/null differ diff --git a/docs/html/structade_1_1_functor.png b/docs/html/structade_1_1_functor.png deleted file mode 100644 index f19e89d33..000000000 Binary files a/docs/html/structade_1_1_functor.png and /dev/null differ diff --git a/docs/html/structade_1_1_graph_stat.png b/docs/html/structade_1_1_graph_stat.png deleted file mode 100644 index 82750ee7a..000000000 Binary files a/docs/html/structade_1_1_graph_stat.png and /dev/null differ diff --git a/docs/html/structade_1_1_path_finder.png b/docs/html/structade_1_1_path_finder.png deleted file mode 100644 index 1e8dedf06..000000000 Binary files a/docs/html/structade_1_1_path_finder.png and /dev/null differ diff --git a/docs/html/structade_1_1i_coord_map.png b/docs/html/structade_1_1i_coord_map.png deleted file mode 100644 index d7dcae12c..000000000 Binary files a/docs/html/structade_1_1i_coord_map.png and /dev/null differ diff --git a/docs/html/structade_1_1i_functor.png b/docs/html/structade_1_1i_functor.png deleted file mode 100644 index ab418b1c9..000000000 Binary files a/docs/html/structade_1_1i_functor.png and /dev/null differ diff --git a/docs/html/structade_1_1i_leaf.png b/docs/html/structade_1_1i_leaf.png deleted file mode 100644 index 84fbb8a4e..000000000 Binary files a/docs/html/structade_1_1i_leaf.png and /dev/null differ diff --git a/docs/html/structade_1_1i_tensor.png b/docs/html/structade_1_1i_tensor.png deleted file mode 100644 index 280147423..000000000 Binary files a/docs/html/structade_1_1i_tensor.png and /dev/null differ diff --git a/docs/html/structade_1_1i_traveler.png b/docs/html/structade_1_1i_traveler.png deleted file mode 100644 index ba6084cc1..000000000 Binary files a/docs/html/structade_1_1i_traveler.png and /dev/null differ diff --git a/docs/html/structage_1_1_grader.png b/docs/html/structage_1_1_grader.png deleted file mode 100644 index 32f12961a..000000000 Binary files a/docs/html/structage_1_1_grader.png and /dev/null differ diff --git a/docs/html/structage_1_1i_rule_set.png b/docs/html/structage_1_1i_rule_set.png deleted file mode 100644 index b140733a0..000000000 Binary files a/docs/html/structage_1_1i_rule_set.png and /dev/null differ diff --git a/docs/html/structage_1_1i_rule_set__inherit__graph.map b/docs/html/structage_1_1i_rule_set__inherit__graph.map deleted file mode 100644 index ac7e97b16..000000000 --- a/docs/html/structage_1_1i_rule_set__inherit__graph.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/structage_1_1i_rule_set__inherit__graph.md5 b/docs/html/structage_1_1i_rule_set__inherit__graph.md5 deleted file mode 100644 index 0710243d6..000000000 --- a/docs/html/structage_1_1i_rule_set__inherit__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -0ceeb04c862cf9329db98db96f411d6c \ No newline at end of file diff --git a/docs/html/structage_1_1i_rule_set__inherit__graph.png b/docs/html/structage_1_1i_rule_set__inherit__graph.png deleted file mode 100644 index f697d63fa..000000000 Binary files a/docs/html/structage_1_1i_rule_set__inherit__graph.png and /dev/null differ diff --git a/docs/html/structerr_1_1_def_logger-members.html b/docs/html/structerr_1_1_def_logger-members.html deleted file mode 100644 index b243b7ad0..000000000 --- a/docs/html/structerr_1_1_def_logger-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
err::DefLogger Member List
-
-
- -

This is the complete list of members for err::DefLogger, including all inherited members.

- - - - - -
error(std::string msg) const overrideerr::DefLoggerinlinevirtual
fatal(std::string msg) const overrideerr::DefLoggerinlinevirtual
warn(std::string msg) const overrideerr::DefLoggerinlinevirtual
~iLogger(void)=defaulterr::iLoggervirtual
- - - - diff --git a/docs/html/structerr_1_1_def_logger.html b/docs/html/structerr_1_1_def_logger.html deleted file mode 100644 index 5138d1cb7..000000000 --- a/docs/html/structerr_1_1_def_logger.html +++ /dev/null @@ -1,216 +0,0 @@ - - - - - - - -Tenncor: err::DefLogger Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Public Member Functions | -List of all members
-
-
err::DefLogger Struct Referencefinal
-
-
- -

Default implementation of iLogger used in ADE. - More...

- -

#include <log.hpp>

-
-Inheritance diagram for err::DefLogger:
-
-
Inheritance graph
- - - -
[legend]
-
-Collaboration diagram for err::DefLogger:
-
-
Collaboration graph
- - - -
[legend]
- - - - - - - - - - - - - - -

-Public Member Functions

void warn (std::string msg) const override
 Implementation of iLogger. More...
 
void error (std::string msg) const override
 Implementation of iLogger. More...
 
void fatal (std::string msg) const override
 Implementation of iLogger. More...
 
- Public Member Functions inherited from err::iLogger
virtual ~iLogger (void)=default
 
-

Detailed Description

-

Default implementation of iLogger used in ADE.

-

Member Function Documentation

- -

◆ error()

- -
-
- - - - - -
- - - - - - - - -
void err::DefLogger::error (std::string msg) const
-
-inlineoverridevirtual
-
- -

Implementation of iLogger.

- -

Implements err::iLogger.

- -
-
- -

◆ fatal()

- -
-
- - - - - -
- - - - - - - - -
void err::DefLogger::fatal (std::string msg) const
-
-inlineoverridevirtual
-
- -

Implementation of iLogger.

- -

Implements err::iLogger.

- -
-
- -

◆ warn()

- -
-
- - - - - -
- - - - - - - - -
void err::DefLogger::warn (std::string msg) const
-
-inlineoverridevirtual
-
- -

Implementation of iLogger.

- -

Implements err::iLogger.

- -
-
-
The documentation for this struct was generated from the following file: -
- - - - diff --git a/docs/html/structerr_1_1_def_logger.png b/docs/html/structerr_1_1_def_logger.png deleted file mode 100644 index ff04ed8a3..000000000 Binary files a/docs/html/structerr_1_1_def_logger.png and /dev/null differ diff --git a/docs/html/structerr_1_1_def_logger__coll__graph.map b/docs/html/structerr_1_1_def_logger__coll__graph.map deleted file mode 100644 index 4005a63f9..000000000 --- a/docs/html/structerr_1_1_def_logger__coll__graph.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/structerr_1_1_def_logger__coll__graph.md5 b/docs/html/structerr_1_1_def_logger__coll__graph.md5 deleted file mode 100644 index af1d6200c..000000000 --- a/docs/html/structerr_1_1_def_logger__coll__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -ede4d246fffe8c54eb543bc849a57861 \ No newline at end of file diff --git a/docs/html/structerr_1_1_def_logger__coll__graph.png b/docs/html/structerr_1_1_def_logger__coll__graph.png deleted file mode 100644 index fd23963ea..000000000 Binary files a/docs/html/structerr_1_1_def_logger__coll__graph.png and /dev/null differ diff --git a/docs/html/structerr_1_1_def_logger__inherit__graph.map b/docs/html/structerr_1_1_def_logger__inherit__graph.map deleted file mode 100644 index 4005a63f9..000000000 --- a/docs/html/structerr_1_1_def_logger__inherit__graph.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/structerr_1_1_def_logger__inherit__graph.md5 b/docs/html/structerr_1_1_def_logger__inherit__graph.md5 deleted file mode 100644 index 2512688c2..000000000 --- a/docs/html/structerr_1_1_def_logger__inherit__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -d5b9e28926a1e5bd185178409cb30e9b \ No newline at end of file diff --git a/docs/html/structerr_1_1_def_logger__inherit__graph.png b/docs/html/structerr_1_1_def_logger__inherit__graph.png deleted file mode 100644 index fd23963ea..000000000 Binary files a/docs/html/structerr_1_1_def_logger__inherit__graph.png and /dev/null differ diff --git a/docs/html/structerr_1_1i_logger-members.html b/docs/html/structerr_1_1i_logger-members.html deleted file mode 100644 index 3ca0d5226..000000000 --- a/docs/html/structerr_1_1i_logger-members.html +++ /dev/null @@ -1,87 +0,0 @@ - - - - - - - -Tenncor: Member List - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-
err::iLogger Member List
-
-
- -

This is the complete list of members for err::iLogger, including all inherited members.

- - - - - -
error(std::string msg) const =0err::iLoggerpure virtual
fatal(std::string msg) const =0err::iLoggerpure virtual
warn(std::string msg) const =0err::iLoggerpure virtual
~iLogger(void)=defaulterr::iLoggervirtual
- - - - diff --git a/docs/html/structerr_1_1i_logger.html b/docs/html/structerr_1_1i_logger.html deleted file mode 100644 index a201c0d0e..000000000 --- a/docs/html/structerr_1_1i_logger.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - - -Tenncor: err::iLogger Struct Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Public Member Functions | -List of all members
-
-
err::iLogger Struct Referenceabstract
-
-
- -

Interface of logger. - More...

- -

#include <log.hpp>

-
-Inheritance diagram for err::iLogger:
-
-
Inheritance graph
- - - -
[legend]
- - - - - - - - - - - - - -

-Public Member Functions

virtual ~iLogger (void)=default
 
virtual void warn (std::string msg) const =0
 Warn user of message regarding poor decisions. More...
 
virtual void error (std::string msg) const =0
 Notify user of message regarding recoverable error. More...
 
virtual void fatal (std::string msg) const =0
 Notify user of message regarding fatal error, then finish him. More...
 
-

Detailed Description

-

Interface of logger.

-

Constructor & Destructor Documentation

- -

◆ ~iLogger()

- -
-
- - - - - -
- - - - - - - - -
virtual err::iLogger::~iLogger (void )
-
-virtualdefault
-
- -
-
-

Member Function Documentation

- -

◆ error()

- -
-
- - - - - -
- - - - - - - - -
virtual void err::iLogger::error (std::string msg) const
-
-pure virtual
-
- -

Notify user of message regarding recoverable error.

- -

Implemented in err::DefLogger.

- -
-
- -

◆ fatal()

- -
-
- - - - - -
- - - - - - - - -
virtual void err::iLogger::fatal (std::string msg) const
-
-pure virtual
-
- -

Notify user of message regarding fatal error, then finish him.

- -

Implemented in err::DefLogger.

- -
-
- -

◆ warn()

- -
-
- - - - - -
- - - - - - - - -
virtual void err::iLogger::warn (std::string msg) const
-
-pure virtual
-
- -

Warn user of message regarding poor decisions.

- -

Implemented in err::DefLogger.

- -
-
-
The documentation for this struct was generated from the following file: -
- - - - diff --git a/docs/html/structerr_1_1i_logger.png b/docs/html/structerr_1_1i_logger.png deleted file mode 100644 index 5297dcec3..000000000 Binary files a/docs/html/structerr_1_1i_logger.png and /dev/null differ diff --git a/docs/html/structerr_1_1i_logger__inherit__graph.map b/docs/html/structerr_1_1i_logger__inherit__graph.map deleted file mode 100644 index 4829d5af7..000000000 --- a/docs/html/structerr_1_1i_logger__inherit__graph.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/structerr_1_1i_logger__inherit__graph.md5 b/docs/html/structerr_1_1i_logger__inherit__graph.md5 deleted file mode 100644 index 053099f9a..000000000 --- a/docs/html/structerr_1_1i_logger__inherit__graph.md5 +++ /dev/null @@ -1 +0,0 @@ -f5a150ea6404cf138d1725c3b6cd3ffd \ No newline at end of file diff --git a/docs/html/structerr_1_1i_logger__inherit__graph.png b/docs/html/structerr_1_1i_logger__inherit__graph.png deleted file mode 100644 index 80be3001e..000000000 Binary files a/docs/html/structerr_1_1i_logger__inherit__graph.png and /dev/null differ diff --git a/docs/html/test_8py.html b/docs/html/test_8py.html deleted file mode 100644 index 518259f9f..000000000 --- a/docs/html/test_8py.html +++ /dev/null @@ -1,122 +0,0 @@ - - - - - - - -Tenncor: age/test.py File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Namespaces | -Variables
-
-
test.py File Reference
-
-
- - - - -

-Classes

class  test.ClientTest
 
- - - -

-Namespaces

 test
 
- - - - - - - - - - - - - - - - - - - - - - - - - -

-Variables

dictionary test.api_fields
 
dictionary test.codes_fields
 
dictionary test.grader_fields
 
dictionary test.opera_fields
 
string test.api_header
 
string test.api_source
 
string test.codes_header
 
string test.codes_source
 
string test.grader_header
 
string test.grader_source
 
string test.opera_header
 
string test.opera_source
 
-
- - - - diff --git a/docs/html/test__api_8cpp.html b/docs/html/test__api_8cpp.html deleted file mode 100644 index ea931f72a..000000000 --- a/docs/html/test__api_8cpp.html +++ /dev/null @@ -1,139 +0,0 @@ - - - - - - - -Tenncor: age/test/test_api.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Functions
-
-
test_api.cpp File Reference
-
-
-
#include "gtest/gtest.h"
-#include "age/test/grader_dep.hpp"
-#include "age/generated/api.hpp"
-
-Include dependency graph for test_api.cpp:
-
-
- - - - - - - - - - - - - - -
-
- - - -

-Functions

 TEST (AGE, Api)
 
-

Function Documentation

- -

◆ TEST()

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (AGE ,
Api  
)
-
- -
-
-
- - - - diff --git a/docs/html/test__api_8cpp__incl.map b/docs/html/test__api_8cpp__incl.map deleted file mode 100644 index c40c0e566..000000000 --- a/docs/html/test__api_8cpp__incl.map +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/docs/html/test__api_8cpp__incl.md5 b/docs/html/test__api_8cpp__incl.md5 deleted file mode 100644 index 2935a47ee..000000000 --- a/docs/html/test__api_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -ad02523e1233220fae74bfc51a44b06d \ No newline at end of file diff --git a/docs/html/test__api_8cpp__incl.png b/docs/html/test__api_8cpp__incl.png deleted file mode 100644 index 9aae97de5..000000000 Binary files a/docs/html/test__api_8cpp__incl.png and /dev/null differ diff --git a/docs/html/test__codes_8cpp.html b/docs/html/test__codes_8cpp.html deleted file mode 100644 index c6a31cb81..000000000 --- a/docs/html/test__codes_8cpp.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - -Tenncor: age/test/test_codes.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Functions
-
-
test_codes.cpp File Reference
-
-
-
#include "gtest/gtest.h"
-#include "age/generated/codes.hpp"
-
-Include dependency graph for test_codes.cpp:
-
-
-
-
- - - - - -

-Functions

 TEST (AGE, Opcode)
 
 TEST (AGE, Typecode)
 
-

Function Documentation

- -

◆ TEST() [1/2]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (AGE ,
Opcode  
)
-
- -
-
- -

◆ TEST() [2/2]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (AGE ,
Typecode  
)
-
- -
-
-
- - - - diff --git a/docs/html/test__codes_8cpp__incl.map b/docs/html/test__codes_8cpp__incl.map deleted file mode 100644 index 6d15e405d..000000000 --- a/docs/html/test__codes_8cpp__incl.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/test__codes_8cpp__incl.md5 b/docs/html/test__codes_8cpp__incl.md5 deleted file mode 100644 index b95a90d05..000000000 --- a/docs/html/test__codes_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -cc4efcecb0e2618042fefb5aa0b491cc \ No newline at end of file diff --git a/docs/html/test__codes_8cpp__incl.png b/docs/html/test__codes_8cpp__incl.png deleted file mode 100644 index 07e441566..000000000 Binary files a/docs/html/test__codes_8cpp__incl.png and /dev/null differ diff --git a/docs/html/test__coord_8cpp.html b/docs/html/test__coord_8cpp.html deleted file mode 100644 index a6b037627..000000000 --- a/docs/html/test__coord_8cpp.html +++ /dev/null @@ -1,198 +0,0 @@ - - - - - - - -Tenncor: ade/test/test_coord.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Functions
-
-
test_coord.cpp File Reference
-
-
-
#include "gtest/gtest.h"
-#include "ade/coord.hpp"
-#include "testutil/common.hpp"
-
-Include dependency graph for test_coord.cpp:
-
-
- - - - - - - -
-
- - - -

-Classes

struct  COORD
 
- - - - - - - -

-Functions

 TEST_F (COORD, Forward)
 
 TEST_F (COORD, Reverse)
 
 TEST_F (COORD, Identity)
 
-

Function Documentation

- -

◆ TEST_F() [1/3]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (COORD ,
Forward  
)
-
- -
-
- -

◆ TEST_F() [2/3]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (COORD ,
Reverse  
)
-
- -
-
- -

◆ TEST_F() [3/3]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (COORD ,
Identity  
)
-
- -
-
-
- - - - diff --git a/docs/html/test__coord_8cpp__incl.map b/docs/html/test__coord_8cpp__incl.map deleted file mode 100644 index b558ec9d9..000000000 --- a/docs/html/test__coord_8cpp__incl.map +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/docs/html/test__coord_8cpp__incl.md5 b/docs/html/test__coord_8cpp__incl.md5 deleted file mode 100644 index 8a5eb2a16..000000000 --- a/docs/html/test__coord_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -4e3846b46f26adf29a7aaa8d9c4cbf3b \ No newline at end of file diff --git a/docs/html/test__coord_8cpp__incl.png b/docs/html/test__coord_8cpp__incl.png deleted file mode 100644 index a2ef7bc41..000000000 Binary files a/docs/html/test__coord_8cpp__incl.png and /dev/null differ diff --git a/docs/html/test__functor_8cpp.html b/docs/html/test__functor_8cpp.html deleted file mode 100644 index 65a2098d4..000000000 --- a/docs/html/test__functor_8cpp.html +++ /dev/null @@ -1,234 +0,0 @@ - - - - - - - -Tenncor: ade/test/test_functor.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Functions
-
-
test_functor.cpp File Reference
-
-
-
#include "gtest/gtest.h"
-#include "ade/functor.hpp"
-#include "testutil/common.hpp"
-#include "common.hpp"
-
-Include dependency graph for test_functor.cpp:
-
-
- - - - - - - - - - - - -
-
- - - -

-Classes

struct  FUNCTOR
 
- - - - - - - - - -

-Functions

 TEST_F (FUNCTOR, Shapes)
 
 TEST_F (FUNCTOR, Opcode)
 
 TEST_F (FUNCTOR, Childrens)
 
 TEST_F (FUNCTOR, ToString)
 
-

Function Documentation

- -

◆ TEST_F() [1/4]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (FUNCTOR ,
Shapes  
)
-
- -
-
- -

◆ TEST_F() [2/4]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (FUNCTOR ,
Opcode  
)
-
- -
-
- -

◆ TEST_F() [3/4]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (FUNCTOR ,
Childrens  
)
-
- -
-
- -

◆ TEST_F() [4/4]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (FUNCTOR ,
ToString  
)
-
- -
-
-
- - - - diff --git a/docs/html/test__functor_8cpp__incl.map b/docs/html/test__functor_8cpp__incl.map deleted file mode 100644 index 0c07235d9..000000000 --- a/docs/html/test__functor_8cpp__incl.map +++ /dev/null @@ -1,12 +0,0 @@ - - - - - - - - - - - - diff --git a/docs/html/test__functor_8cpp__incl.md5 b/docs/html/test__functor_8cpp__incl.md5 deleted file mode 100644 index 0fc60eed8..000000000 --- a/docs/html/test__functor_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -f08763095494f8f5e74df92fb2571a11 \ No newline at end of file diff --git a/docs/html/test__functor_8cpp__incl.png b/docs/html/test__functor_8cpp__incl.png deleted file mode 100644 index 5b350115b..000000000 Binary files a/docs/html/test__functor_8cpp__incl.png and /dev/null differ diff --git a/docs/html/test__log_8cpp.html b/docs/html/test__log_8cpp.html deleted file mode 100644 index 72f0f5abb..000000000 --- a/docs/html/test__log_8cpp.html +++ /dev/null @@ -1,315 +0,0 @@ - - - - - - - -Tenncor: err/test/test_log.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Functions
-
-
test_log.cpp File Reference
-
-
-
#include "gtest/gtest.h"
-#include "err/test/common.hpp"
-
-Include dependency graph for test_log.cpp:
-
-
- - - - - -
-
- - - -

-Classes

struct  LOG
 
- - - - - - - - - - - - - - - -

-Functions

 TEST_F (LOG, Default)
 
 TEST_F (LOG, Warn)
 
 TEST_F (LOG, WarnFmt)
 
 TEST_F (LOG, Error)
 
 TEST_F (LOG, ErrorFmt)
 
 TEST_F (LOG, Fatal)
 
 TEST_F (LOG, FatalFmt)
 
-

Function Documentation

- -

◆ TEST_F() [1/7]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (LOG ,
Default  
)
-
- -
-
- -

◆ TEST_F() [2/7]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (LOG ,
Warn  
)
-
- -
-
- -

◆ TEST_F() [3/7]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (LOG ,
WarnFmt  
)
-
- -
-
- -

◆ TEST_F() [4/7]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (LOG ,
Error  
)
-
- -
-
- -

◆ TEST_F() [5/7]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (LOG ,
ErrorFmt  
)
-
- -
-
- -

◆ TEST_F() [6/7]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (LOG ,
Fatal  
)
-
- -
-
- -

◆ TEST_F() [7/7]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (LOG ,
FatalFmt  
)
-
- -
-
-
- - - - diff --git a/docs/html/test__log_8cpp__incl.map b/docs/html/test__log_8cpp__incl.map deleted file mode 100644 index 2aa1f1643..000000000 --- a/docs/html/test__log_8cpp__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/docs/html/test__log_8cpp__incl.md5 b/docs/html/test__log_8cpp__incl.md5 deleted file mode 100644 index 82b8fda1d..000000000 --- a/docs/html/test__log_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -8f470585816e1bb168a16811e5bed1bc \ No newline at end of file diff --git a/docs/html/test__log_8cpp__incl.png b/docs/html/test__log_8cpp__incl.png deleted file mode 100644 index 6baa38703..000000000 Binary files a/docs/html/test__log_8cpp__incl.png and /dev/null differ diff --git a/docs/html/test__matops_8cpp.html b/docs/html/test__matops_8cpp.html deleted file mode 100644 index 2f5aace88..000000000 --- a/docs/html/test__matops_8cpp.html +++ /dev/null @@ -1,137 +0,0 @@ - - - - - - - -Tenncor: ade/test/test_matops.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Functions
-
-
test_matops.cpp File Reference
-
-
-
#include "gtest/gtest.h"
-#include "ade/matops.hpp"
-#include "testutil/common.hpp"
-
-Include dependency graph for test_matops.cpp:
-
-
- - - - - - -
-
- - - -

-Classes

struct  MATOPS
 
- - - -

-Functions

 TEST_F (MATOPS, ToString)
 
-

Function Documentation

- -

◆ TEST_F()

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (MATOPS ,
ToString  
)
-
- -
-
-
- - - - diff --git a/docs/html/test__matops_8cpp__incl.map b/docs/html/test__matops_8cpp__incl.map deleted file mode 100644 index a2f23d32d..000000000 --- a/docs/html/test__matops_8cpp__incl.map +++ /dev/null @@ -1,6 +0,0 @@ - - - - - - diff --git a/docs/html/test__matops_8cpp__incl.md5 b/docs/html/test__matops_8cpp__incl.md5 deleted file mode 100644 index 7d52b3ad9..000000000 --- a/docs/html/test__matops_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -38f641e6c51e73fe253b934fa754cd7e \ No newline at end of file diff --git a/docs/html/test__matops_8cpp__incl.png b/docs/html/test__matops_8cpp__incl.png deleted file mode 100644 index 200ebc0d3..000000000 Binary files a/docs/html/test__matops_8cpp__incl.png and /dev/null differ diff --git a/docs/html/test__opmap_8cpp.html b/docs/html/test__opmap_8cpp.html deleted file mode 100644 index 7e7301bd4..000000000 --- a/docs/html/test__opmap_8cpp.html +++ /dev/null @@ -1,154 +0,0 @@ - - - - - - - -Tenncor: age/test/test_opmap.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Functions
-
-
test_opmap.cpp File Reference
-
-
-
#include "gtest/gtest.h"
-#include "age/generated/opmap.hpp"
-
-Include dependency graph for test_opmap.cpp:
-
-
-
-
- - - - - -

-Functions

 TEST (AGE, OpmapEminem)
 
 TEST (AGE, OpmapKhaled)
 
-

Function Documentation

- -

◆ TEST() [1/2]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (AGE ,
OpmapEminem  
)
-
- -
-
- -

◆ TEST() [2/2]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (AGE ,
OpmapKhaled  
)
-
- -
-
-
- - - - diff --git a/docs/html/test__opmap_8cpp__incl.map b/docs/html/test__opmap_8cpp__incl.map deleted file mode 100644 index 733d24c27..000000000 --- a/docs/html/test__opmap_8cpp__incl.map +++ /dev/null @@ -1,2 +0,0 @@ - - diff --git a/docs/html/test__opmap_8cpp__incl.md5 b/docs/html/test__opmap_8cpp__incl.md5 deleted file mode 100644 index 27275f125..000000000 --- a/docs/html/test__opmap_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -c4b0ad72a67e59f826335c8c3de87af0 \ No newline at end of file diff --git a/docs/html/test__opmap_8cpp__incl.png b/docs/html/test__opmap_8cpp__incl.png deleted file mode 100644 index 86c2236c5..000000000 Binary files a/docs/html/test__opmap_8cpp__incl.png and /dev/null differ diff --git a/docs/html/test__shape_8cpp.html b/docs/html/test__shape_8cpp.html deleted file mode 100644 index 36ff096e2..000000000 --- a/docs/html/test__shape_8cpp.html +++ /dev/null @@ -1,316 +0,0 @@ - - - - - - - -Tenncor: ade/test/test_shape.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Functions
-
-
test_shape.cpp File Reference
-
-
-
#include "gtest/gtest.h"
-#include "ade/shape.hpp"
-#include "testutil/common.hpp"
-
-Include dependency graph for test_shape.cpp:
-
-
- - - - - -
-
- - - -

-Classes

struct  SHAPE
 
- - - - - - - - - - - - - - - -

-Functions

 TEST_F (SHAPE, Init)
 
 TEST_F (SHAPE, VecAssign)
 
 TEST_F (SHAPE, Moves)
 
 TEST_F (SHAPE, NElems)
 
 TEST_F (SHAPE, Compatible)
 
 TEST_F (SHAPE, Coordinates)
 
 TEST_F (SHAPE, ToString)
 
-

Function Documentation

- -

◆ TEST_F() [1/7]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (SHAPE ,
Init  
)
-
- -
-
- -

◆ TEST_F() [2/7]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (SHAPE ,
VecAssign  
)
-
- -
-
- -

◆ TEST_F() [3/7]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (SHAPE ,
Moves  
)
-
- -
-
- -

◆ TEST_F() [4/7]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (SHAPE ,
NElems  
)
-
- -
-
- -

◆ TEST_F() [5/7]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (SHAPE ,
Compatible  
)
-
- -
-
- -

◆ TEST_F() [6/7]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (SHAPE ,
Coordinates  
)
-
- -
-
- -

◆ TEST_F() [7/7]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (SHAPE ,
ToString  
)
-
- -
-
-
- - - - diff --git a/docs/html/test__shape_8cpp__incl.map b/docs/html/test__shape_8cpp__incl.map deleted file mode 100644 index 67a68b2fe..000000000 --- a/docs/html/test__shape_8cpp__incl.map +++ /dev/null @@ -1,5 +0,0 @@ - - - - - diff --git a/docs/html/test__shape_8cpp__incl.md5 b/docs/html/test__shape_8cpp__incl.md5 deleted file mode 100644 index 97c52ce76..000000000 --- a/docs/html/test__shape_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -b623eef69c2e6a6a0d0d303546c88614 \ No newline at end of file diff --git a/docs/html/test__shape_8cpp__incl.png b/docs/html/test__shape_8cpp__incl.png deleted file mode 100644 index 66315b851..000000000 Binary files a/docs/html/test__shape_8cpp__incl.png and /dev/null differ diff --git a/docs/html/test__string_8cpp.html b/docs/html/test__string_8cpp.html deleted file mode 100644 index b2644ea10..000000000 --- a/docs/html/test__string_8cpp.html +++ /dev/null @@ -1,250 +0,0 @@ - - - - - - - -Tenncor: err/test/test_string.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Functions
-
-
test_string.cpp File Reference
-
-
-
#include <array>
-#include <list>
-#include <vector>
-#include "gtest/gtest.h"
-#include "err/string.hpp"
-
-Include dependency graph for test_string.cpp:
-
-
- - - -
-
- - - - - - - - - - - -

-Functions

 TEST (STREAM, StringFmt)
 
 TEST (STREAM, GenericFmt)
 
 TEST (STREAM, Iterators)
 
 TEST (STRING, Iterators)
 
 TEST (STRING, Sprintf)
 
-

Function Documentation

- -

◆ TEST() [1/5]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (STREAM ,
StringFmt  
)
-
- -
-
- -

◆ TEST() [2/5]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (STREAM ,
GenericFmt  
)
-
- -
-
- -

◆ TEST() [3/5]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (STREAM ,
Iterators  
)
-
- -
-
- -

◆ TEST() [4/5]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (STRING ,
Iterators  
)
-
- -
-
- -

◆ TEST() [5/5]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST (STRING ,
Sprintf  
)
-
- -
-
-
- - - - diff --git a/docs/html/test__string_8cpp__incl.map b/docs/html/test__string_8cpp__incl.map deleted file mode 100644 index 5429c50ad..000000000 --- a/docs/html/test__string_8cpp__incl.map +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/docs/html/test__string_8cpp__incl.md5 b/docs/html/test__string_8cpp__incl.md5 deleted file mode 100644 index 604eb0cfc..000000000 --- a/docs/html/test__string_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -f6a9164e82bf78aa68686f9f553f9019 \ No newline at end of file diff --git a/docs/html/test__string_8cpp__incl.png b/docs/html/test__string_8cpp__incl.png deleted file mode 100644 index f51107da6..000000000 Binary files a/docs/html/test__string_8cpp__incl.png and /dev/null differ diff --git a/docs/html/test__tensor_8cpp.html b/docs/html/test__tensor_8cpp.html deleted file mode 100644 index f2cbca396..000000000 --- a/docs/html/test__tensor_8cpp.html +++ /dev/null @@ -1,141 +0,0 @@ - - - - - - - -Tenncor: ade/test/test_tensor.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Functions
-
-
test_tensor.cpp File Reference
-
-
-
#include "gtest/gtest.h"
-#include "testutil/common.hpp"
-#include "common.hpp"
-
-Include dependency graph for test_tensor.cpp:
-
-
- - - - - - - - - - -
-
- - - -

-Classes

struct  TENSOR
 
- - - -

-Functions

 TEST_F (TENSOR, MappedTensor)
 
-

Function Documentation

- -

◆ TEST_F()

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (TENSOR ,
MappedTensor  
)
-
- -
-
-
- - - - diff --git a/docs/html/test__tensor_8cpp__incl.map b/docs/html/test__tensor_8cpp__incl.map deleted file mode 100644 index cb262a648..000000000 --- a/docs/html/test__tensor_8cpp__incl.map +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - - - - diff --git a/docs/html/test__tensor_8cpp__incl.md5 b/docs/html/test__tensor_8cpp__incl.md5 deleted file mode 100644 index 8de87074a..000000000 --- a/docs/html/test__tensor_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -cbb5df5ee86b71dd5c10d1c469d16322 \ No newline at end of file diff --git a/docs/html/test__tensor_8cpp__incl.png b/docs/html/test__tensor_8cpp__incl.png deleted file mode 100644 index 6bafc4a5a..000000000 Binary files a/docs/html/test__tensor_8cpp__incl.png and /dev/null differ diff --git a/docs/html/test__traveler_8cpp.html b/docs/html/test__traveler_8cpp.html deleted file mode 100644 index 71d8dcc3d..000000000 --- a/docs/html/test__traveler_8cpp.html +++ /dev/null @@ -1,176 +0,0 @@ - - - - - - - -Tenncor: ade/test/test_traveler.cpp File Reference - - - - - - - - - -
-
- - - - - - -
-
Tenncor -
-
-
- - - - - - - - -
-
- - -
- -
- - -
-
-
-Classes | -Functions
-
-
test_traveler.cpp File Reference
-
-
-
#include "gtest/gtest.h"
-#include "ade/functor.hpp"
-#include "ade/traveler.hpp"
-#include "testutil/common.hpp"
-#include "common.hpp"
-
-Include dependency graph for test_traveler.cpp:
-
-
- - - - - - - - - - - - - -
-
- - - -

-Classes

struct  TRAVELER
 
- - - - - -

-Functions

 TEST_F (TRAVELER, GraphStat)
 
 TEST_F (TRAVELER, PathFinder)
 
-

Function Documentation

- -

◆ TEST_F() [1/2]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (TRAVELER ,
GraphStat  
)
-
- -
-
- -

◆ TEST_F() [2/2]

- -
-
- - - - - - - - - - - - - - - - - - -
TEST_F (TRAVELER ,
PathFinder  
)
-
- -
-
-
- - - - diff --git a/docs/html/test__traveler_8cpp__incl.map b/docs/html/test__traveler_8cpp__incl.map deleted file mode 100644 index ffb73a0f0..000000000 --- a/docs/html/test__traveler_8cpp__incl.map +++ /dev/null @@ -1,13 +0,0 @@ - - - - - - - - - - - - - diff --git a/docs/html/test__traveler_8cpp__incl.md5 b/docs/html/test__traveler_8cpp__incl.md5 deleted file mode 100644 index 8a2875eb3..000000000 --- a/docs/html/test__traveler_8cpp__incl.md5 +++ /dev/null @@ -1 +0,0 @@ -5a7479047a6f62227e3342ef718f6268 \ No newline at end of file diff --git a/docs/html/test__traveler_8cpp__incl.png b/docs/html/test__traveler_8cpp__incl.png deleted file mode 100644 index 7ad911370..000000000 Binary files a/docs/html/test__traveler_8cpp__incl.png and /dev/null differ