UNPKG
@aureooms/js-2sat
Version:
latest (0.0.3)
0.0.3
2-Satisfiability code bricks for JavaScript
aureooms.github.io/js-2sat/
aureooms/js-2sat
@aureooms/js-2sat
/
src
/
variable.js
8 lines
(3 loc)
•
64 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
export function variable (
a
) { return
a
>
0
?
a
: -a ; }