NilFoundation / crypto3-zk

Zero-Knowledge Proof Systems for =nil; Crypto3 C++ Cryptography Suite.
MIT License
33 stars 13 forks source link

Pow-factor usage unification #272

Open ETatuzova opened 9 months ago

ETatuzova commented 9 months ago

There are few different places in placeholder where pow_factor construction is used. result = \sum_i=0 ^n \alpha^i c_i

But sometimes it has form: result = \sum_i=0 ^n \alpha^{n-i} c_i

Due to our plans to create an efficient pow_factor component we need to provide similar pow_factor usage to increase pow_factor efficiency.