* VerificationCircuit --> NIFSVerifierCircuit, for clarity

* InnerCircuit --> StepCircuit

* Rename

* cleanup imports

* additional cleanup in the test

* small cleanup
This commit is contained in:
Srinath Setty
2022-04-13 17:29:48 -07:00
committed by GitHub
parent cbc3fe81dc
commit c20da2f58c
10 changed files with 95 additions and 82 deletions

View File

@@ -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;

View File

@@ -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};