Skip to content

Tags: lemmy/CommunityModules

Tags

202110220227

Toggle 202110220227's commit message
Add Functions!AntiFunction as a simple variant of Inverse.

Note, AntiFunction comes with a Java module override and is, thus,
significantly faster.

[Feature]

202110210339

Toggle 202110210339's commit message
Explicitly convert CSV!CSVWrite parameter to TupleValue to handle case

where parameter is a FcnRcdValue.

[Feature]

202109151349

Toggle 202109151349's commit message
A non-existent file is defined to have zero CSV records.

Easily write headers if file doesn't exist:

```tla
ASSUME CSVRecords("output.csv") = 0 => CSVWrite("Headers...", <<>>,
'output.csv")
```

[Refactor][TLC]

202109142324

Toggle 202109142324's commit message
A non-existent file is defined to have zero CSV records.

Easily write headers if file doesn't exist:

```tla
ASSUME CSVRecords("output.csv") = 0 => CSVWrite("Headers...", <<>>,
'output.csv")
```

[Refactor][TLC]

202109122055

Toggle 202109122055's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Add 'SymDiff' operator for the symmetric difference of two sets

Addresses tlaplus#46

202109122050

Toggle 202109122050's commit message
Add 'SymDiff' operator for the symmetric difference of two sets

202109102035

Toggle 202109102035's commit message
IOUtils!atoi

[Feature]

202109102034

Toggle 202109102034's commit message
IOUtils!atoi

[Feature]

202109030342

Toggle 202109030342's commit message
Synchronize Json!serialize operators in case multiple workers

write to the same trace file concurrently.

tlaplus#47

[Bug]

202109021857

Toggle 202109021857's commit message
NullPointerException in Json module when domain of FcnRcdValue is

represented symbolically as an IntervalValue.

Fixes Github issue "Bad format of Json trace printing"
tlaplus#47

[Bug]