File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " semiring" ,
3
- "version" : " 1.2.4 " ,
3
+ "version" : " 1.2.5 " ,
4
4
"main" : " index.js" ,
5
5
"types" : " index.d.ts" ,
6
6
"repository" : " git@github.com:digitalheir/semiring-js.git" ,
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ import {
38
38
BooleanSemiring ,
39
39
fromProbabilityToMinusLog as fromProbability ,
40
40
toProbabilityFromMinusLog as toProbability ,
41
- Atom ,
41
+ AtomicValue ,
42
42
Bool
43
43
} from " semiring" ;
44
44
@@ -65,7 +65,7 @@ const deferrableBooleanSemiring = makeDeferrable(BooleanSemiring);
65
65
const AND = deferrableBooleanSemiring .times ;
66
66
const OR = deferrableBooleanSemiring .plus ;
67
67
68
- const changeMyValue = new Atom (false );
68
+ const changeMyValue = new AtomicValue (false );
69
69
70
70
const TRUE = Bool .TRUE ;
71
71
const FALSE = Bool .FALSE ;
You can’t perform that action at this time.
0 commit comments