Skip to content
Snippets Groups Projects

WIP: Resolve "Complete state vector new data structure?"

Closed Joan Solà Ortega requested to merge 287-complete-state-vector-new-data-structure into devel
1 file
+ 3
8
Compare changes
  • Side-by-side
  • Inline
@@ -49,7 +49,7 @@ TEST(StateComposite, operatorStream)
x.emplace("P", Vector2d(1,1));
x.emplace("O", Vector3d(2,2,2));
WOLF_DEBUG("x = " , x);
cout << "x = " << x << endl;
}
@@ -70,16 +70,11 @@ TEST(MatrixComposite, emplace_operatorStream)
ASSERT_TRUE(M.emplace("P", "P", Mpp));
WOLF_DEBUG("M = " , M);
ASSERT_TRUE(M.emplace("P", "O", Mpo));
WOLF_DEBUG("M = " , M);
ASSERT_TRUE(M.emplace("O", "P", Mop));
WOLF_DEBUG("M = " , M);
ASSERT_TRUE(M.emplace("O", "O", Moo));
WOLF_DEBUG("M = " , M);
cout << "M = " << M << endl;
}
TEST(MatrixComposite, operatorParenthesis)
Loading