d2862a676b
Due to the unclear planning for the structure and function, this project is being stopped.
48 lines
1.3 KiB
Julia
48 lines
1.3 KiB
Julia
ScriptVersion = "0.0.1alpha"
|
|
# Very unstable alpha Version!
|
|
|
|
# Locally include and use packages
|
|
if isdefined(@__MODULE__, :LookUpTable)
|
|
LookUpTable isa Module || error("LookUpTable is present and it is not a Module")
|
|
else
|
|
include("LookUpTable.jl")
|
|
end
|
|
using .LookUpTable
|
|
|
|
if isdefined(@__MODULE__, :FileCodeOutput)
|
|
FileCodeOutput isa Module || error("FileCodeOutput is present and it is not a Module")
|
|
else
|
|
include("FileCodeOutput.jl")
|
|
end
|
|
using .FileCodeOutput
|
|
|
|
if isdefined(@__MODULE__, :JSONPhraser)
|
|
JSONPhraser isa Module || error("JSONPhraser is present and it is not a Module")
|
|
else
|
|
include("JSONPhraser.jl")
|
|
end
|
|
using .JSONPhraser
|
|
|
|
#=======================User configured Section==========================#
|
|
# Your Version Number
|
|
YourVersion= "0.1"
|
|
|
|
# Target code style
|
|
# Option: C(suitable for C and C++),Julia
|
|
codeStyle = "Julia"
|
|
|
|
# Target data Type
|
|
# Option: f32(suggested), f64
|
|
dataType = "f32"
|
|
|
|
|
|
#=======================User configured Section==========================#
|
|
|
|
M1=ReliAffixECDConverter();
|
|
M2=ReliLevelECDConverter();
|
|
|
|
open("output.txt", "w") do file
|
|
PrintScriptVersion(file, ScriptVersion, YourVersion;codeStyle=codeStyle);
|
|
Print3DMatrix(file, M1 ; varName="reliSubstat",codeStyle=codeStyle);
|
|
Print3DMatrix(file, M2 ; varName="reliMainstat",codeStyle=codeStyle);
|
|
end |