Skip to content

Commit

Permalink
Add todo comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
codygunton committed Apr 5, 2023
1 parent d72ffd0 commit a2e3d92
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions cpp/src/barretenberg/honk/CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# TODO(Cody): Make remove plonk dependency
barretenberg_module(honk numeric ecc srs proof_system transcript plonk)

if(TESTING)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ template <typename CircuitConstructor> class StandardHonkComposerHelper {
// at all
std::shared_ptr<ReferenceStringFactory> crs_factory_;
bool computed_witness = false;
// TODO(Luke): use make_shared
StandardHonkComposerHelper()
: StandardHonkComposerHelper(std::shared_ptr<ReferenceStringFactory>(
new proof_system::FileReferenceStringFactory("../srs_db/ignition")))
Expand Down
2 changes: 1 addition & 1 deletion cpp/src/barretenberg/proof_system/types/composer_type.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

namespace proof_system {
// This will go away, but we move it here has a temporary measure to make proof_system not depend on honk or plonk.
// TODO(Cody) Get rid of this.
enum ComposerType { STANDARD, TURBO, PLOOKUP, STANDARD_HONK };
} // namespace proof_system

0 comments on commit a2e3d92

Please sign in to comment.