move source code into an src subdirectory

This commit is contained in:
Balazs Komuves 2024-12-13 20:20:43 +01:00
parent 1823fd462a
commit 1d513debb9
No known key found for this signature in database
GPG Key ID: F63B7AEF18435562
15 changed files with 4 additions and 4 deletions

View File

@ -21,14 +21,14 @@ main = do
-- let prefix = "recursion_outer"
let prefix = "lookup"
text_common <- L.readFile ("json/" ++ prefix ++ "_common.json")
text_vkey <- L.readFile ("json/" ++ prefix ++ "_vkey.json" )
text_proof <- L.readFile ("json/" ++ prefix ++ "_proof.json" )
text_common <- L.readFile ("../json/" ++ prefix ++ "_common.json")
text_vkey <- L.readFile ("../json/" ++ prefix ++ "_vkey.json" )
text_proof <- L.readFile ("../json/" ++ prefix ++ "_proof.json" )
let Just common_data = decode text_common :: Maybe CommonCircuitData
let Just verifier_data = decode text_vkey :: Maybe VerifierOnlyCircuitData
let Just proof_data = decode text_proof :: Maybe ProofWithPublicInputs
let challenges = proofChallenges common_data verifier_data proof_data
print challenges