Skip to content

Commit f2f762a

Browse files
author
Sriram Aananthakrishnan
committed
adding product lattice
1 parent a08d432 commit f2f762a

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

spdfp1.cpp

+18
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,24 @@ class Lattice : public serializable
2121
virtual void str(std::string indent=" ") = 0;
2222
};
2323

24+
class ProductLattice : public serializable
25+
{
26+
public:
27+
std::map<int, Lattice*> productlattice;
28+
29+
void serialize(OutArchive& archive, const unsigned int version = 0)
30+
{
31+
}
32+
33+
void deserialize(InArchive& archive, const unsigned int version = 0)
34+
{
35+
}
36+
37+
void str(std::string indent)
38+
{
39+
}
40+
};
41+
2442
class IntLattice: public Lattice
2543
{
2644
public:

0 commit comments

Comments
 (0)