mirror of
https://github.com/ProvableHQ/leo.git
synced 2024-11-23 15:15:47 +03:00
16 lines
431 B
Plaintext
16 lines
431 B
Plaintext
/*
|
|
namespace: Compile
|
|
expectation: Pass
|
|
input_file:
|
|
- inputs/scalar_group.in
|
|
*/
|
|
|
|
@program
|
|
function main(a: scalar, b: group, c: scalar) -> bool {
|
|
let d: group = 1817767092074430972953743941103352519057913259183777531581123188265134806220group * a;
|
|
let e: group = a * 1817767092074430972953743941103352519057913259183777531581123188265134806220group;
|
|
let f: group = b * a;
|
|
let g: group = a * b;
|
|
|
|
return a * g == d;
|
|
} |