mirror of
https://github.com/ANL-CEEESA/UnitCommitment.jl.git
synced 2025-12-06 00:08:52 -06:00
11 lines
400 B
Julia
11 lines
400 B
Julia
# UnitCommitment.jl: Optimization Package for Security-Constrained Unit Commitment
|
|
# Copyright (C) 2020, UChicago Argonne, LLC. All rights reserved.
|
|
# Released under the modified BSD license. See COPYING.md for more details.
|
|
|
|
function write(filename::AbstractString, solution::AbstractDict)::Nothing
|
|
open(filename, "w") do file
|
|
return JSON.print(file, solution, 2)
|
|
end
|
|
return
|
|
end
|