Skip to content
This repository has been archived by the owner on Jun 15, 2023. It is now read-only.

Commit

Permalink
Removal of exports in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronleesander committed Jun 14, 2023
1 parent 9370f6d commit b7f26c9
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions test/test_package.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,12 +185,7 @@ TEST(DDPackageTest, IdentityTrace) {
TEST(DDPackageTest, PartialIdentityTrace) {
auto dd = std::make_unique<dd::Package<>>(2);
auto tr = dd->partialTrace(dd->makeIdent(), {false, true});
std::string filename1 = "C:/Users/aaron/OneDrive/Documents/GitHub/ddsim/extern/qfr/extern/dd_package/graphs/Trace";
dd::export2Dot(tr, filename1);
auto mul = dd->multiply(tr, tr);
std::string filename2 = "C:/Users/aaron/OneDrive/Documents/GitHub/ddsim/extern/qfr/extern/dd_package/graphs/Multiply";
dd::export2Dot(mul, filename2);
dd::export2Dot(tr, filename1);

EXPECT_EQ(dd::CTEntry::val(mul.w.r), 4.0);
}
Expand Down

0 comments on commit b7f26c9

Please sign in to comment.