-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtensor.h
66 lines (50 loc) · 858 Bytes
/
tensor.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#ifndef TENSOR_H
#define TENSOR_H
/**
* @file tensor.h
* @author Jason Ventresca
* @brief Brief description goes here
*/
#include <iostream>
namespace Math
{
class Tensor
{
public:
/**
* Orthodox Canonical Form (OCF) member functions
*/
/**
* Default Constructor
*/
Tensor()
{
}
/**
* Copy Constructor
*/
Tensor(const Tensor& copy)
{
}
/**
* Destructor
*/
~Tensor()
{
}
/**
* Copy Assignment Operator
*/
Tensor& operator=(const Tensor& rhs)
{
/**
* perform deep copy -- consider moving to implementation file to prevent
* the compiler from inlining this function if it gets heavy
*/
return *this;
}
private:
friend std::ostream& operator<<(std::ostream&, const Tensor&);
}; // class Tensor
} // namespace Math
#endif // include guard TENSOR_H