This commit is contained in:
2025-11-22 09:05:06 +07:00
parent 0e36b8db90
commit fbedd507fc
9 changed files with 164 additions and 181 deletions

View File

@@ -8,9 +8,9 @@ export noNegative!, randomWithProb, randomChoiceWithProb, findIndex, limitvalue,
isLess, allTrue, getStringBetweenCharacters, JSON3read_stringKey, mkDictPath!,
getDictPath, detectKeywordVariation, textToDict
using JSON3, DataStructures, Distributions, Random, Dates, UUIDs, DataFrames, CSV
using JSON, DataStructures, Distributions, Random, Dates, UUIDs, DataFrames, CSV
using ..util, ..communication
#[WORKING] update code to use JSON
# ---------------------------------------------- 100 --------------------------------------------- #
noNegative!(a::AbstractVector) = replace!(x -> x < 0 ? 0 : x, a)