-
Notifications
You must be signed in to change notification settings - Fork 295
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove decider prover and verifier construction from composer.
- Loading branch information
1 parent
4ad0574
commit 25f1723
Showing
11 changed files
with
249 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
20 changes: 0 additions & 20 deletions
20
barretenberg/cpp/src/barretenberg/ultra_honk/ultra_composer.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,26 +1,6 @@ | ||
#include "barretenberg/ultra_honk/ultra_composer.hpp" | ||
#include "barretenberg/proof_system/circuit_builder/ultra_circuit_builder.hpp" | ||
#include "barretenberg/proof_system/composer/composer_lib.hpp" | ||
#include "barretenberg/proof_system/composer/permutation_lib.hpp" | ||
#include "barretenberg/proof_system/library/grand_product_library.hpp" | ||
|
||
namespace bb { | ||
|
||
template <IsUltraFlavor Flavor> | ||
DeciderProver_<Flavor> UltraComposer_<Flavor>::create_decider_prover(const std::shared_ptr<ProverInstance>& accumulator, | ||
const std::shared_ptr<Transcript>& transcript) | ||
{ | ||
return DeciderProver_<Flavor>(accumulator, transcript); | ||
; | ||
} | ||
|
||
template <IsUltraFlavor Flavor> | ||
DeciderVerifier_<Flavor> UltraComposer_<Flavor>::create_decider_verifier( | ||
const std::shared_ptr<VerifierInstance>& accumulator, const std::shared_ptr<Transcript>& transcript) | ||
{ | ||
return DeciderVerifier_<Flavor>(transcript, accumulator); | ||
} | ||
|
||
template class UltraComposer_<UltraFlavor>; | ||
template class UltraComposer_<GoblinUltraFlavor>; | ||
} // namespace bb |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.