mirror of
https://github.com/arnaucube/Nova.git
synced 2026-01-19 04:11:31 +01:00
Cleanup (#27)
* VerificationCircuit --> NIFSVerifierCircuit, for clarity * InnerCircuit --> StepCircuit * Rename * cleanup imports * additional cleanup in the test * small cleanup
This commit is contained in:
@@ -2,8 +2,7 @@
|
||||
|
||||
#![allow(non_snake_case)]
|
||||
|
||||
use super::shape_cs::ShapeCS;
|
||||
use super::solver::SatisfyingAssignment;
|
||||
use super::{shape_cs::ShapeCS, solver::SatisfyingAssignment};
|
||||
use bellperson::{Index, LinearCombination};
|
||||
|
||||
use ff::PrimeField;
|
||||
|
||||
@@ -1,7 +1,9 @@
|
||||
//! Support for generating R1CS shape using bellperson.
|
||||
|
||||
use std::cmp::Ordering;
|
||||
use std::collections::{BTreeMap, HashMap};
|
||||
use std::{
|
||||
cmp::Ordering,
|
||||
collections::{BTreeMap, HashMap},
|
||||
};
|
||||
|
||||
use crate::traits::{Group, PrimeField as PF};
|
||||
use ff::{Field, PrimeField};
|
||||
|
||||
Reference in New Issue
Block a user