Remove TODOs by creating tickets.

This commit is contained in:
Sean Bowe 2018-02-07 13:55:34 -07:00
parent edc4adc32c
commit 73e73d7c8c
No known key found for this signature in database
GPG Key ID: 95684257D8F8B031
3 changed files with 0 additions and 13 deletions

View File

@ -218,10 +218,6 @@ impl<E: JubjubEngine, Var: Copy> EdwardsPoint<E, Var> {
{
// -x^2 + y^2 = 1 + dx^2y^2
// TODO: This code uses a naive method to determine if the
// point is on the curve, but it could be optimized to three
// constraints.
let x2 = x.square(cs.namespace(|| "x^2"))?;
let y2 = y.square(cs.namespace(|| "y^2"))?;
let x2y2 = x2.mul(cs.namespace(|| "x^2 y^2"), &y2)?;
@ -249,9 +245,6 @@ impl<E: JubjubEngine, Var: Copy> EdwardsPoint<E, Var> {
) -> Result<Self, SynthesisError>
where CS: ConstraintSystem<E, Variable=Var>
{
// TODO: doubling can be optimized to just 5
// constraints.
self.add(cs, self, params)
}

View File

@ -303,10 +303,6 @@ impl<E: Engine, Var: Copy> AllocatedNum<E, Var> {
) -> Result<(Self, Self), SynthesisError>
where CS: ConstraintSystem<E, Variable=Var>
{
// TODO: Technically this need only be 1 constraint.
// However this interface does not currently support
// returning linear combinations.
let c = Self::alloc(
cs.namespace(|| "conditional reversal result 1"),
|| {

View File

@ -140,7 +140,6 @@ impl JubjubBls12 {
let mut pedersen_hash_generators = vec![];
while pedersen_hash_generators.len() < 10 {
// TODO: personalize
let gh = group_hash(&[cur], &tmp);
// We don't want to overflow and start reusing generators
assert!(cur != u8::max_value());
@ -160,7 +159,6 @@ impl JubjubBls12 {
let mut fixed_base_generators = vec![];
while fixed_base_generators.len() < (FixedGenerators::Max as usize) {
// TODO: personalize
let gh = group_hash(&[cur], &tmp);
// We don't want to overflow and start reusing generators
assert!(cur != u8::max_value());