Skip to content

Commit 3f90b84

Browse files
committed
Added example CSV files
1 parent a78077e commit 3f90b84

File tree

5 files changed

+1273
-32
lines changed

5 files changed

+1273
-32
lines changed

examples/explicit_kinetic_problem.jl

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,13 @@
99
# Import the necessary packages
1010
using EAGO, JuMP, CSV, DataFrames, Symbolics, SourceCodeMcCormick, CUDA, BenchmarkTools
1111

12+
# Import the ParBB algorithm
13+
include(joinpath(@__DIR__, "ParBB", "extension.jl"))
14+
include(joinpath(@__DIR__, "ParBB", "subroutines.jl"))
15+
1216
# Import the kinetic intensity data
13-
data = CSV.read("C:/Users/rxg20001/Documents/Github_Repositories/EAGO-GPU.jl/kinetic_intensity_data.csv", DataFrame)
14-
bounds = CSV.read("C:/Users/rxg20001/Documents/Github_Repositories/EAGO-GPU.jl/implicit_variable_bounds.csv", DataFrame)
17+
data = CSV.read(joinpath(@__DIR__, "kinetic_intensity_data.csv"), DataFrame)
18+
bounds = CSV.read(joinpath(@__DIR__, "implicit_variable_bounds.csv"), DataFrame)
1519

1620
# Define the constant terms in the expressions
1721
T = 273.0

0 commit comments

Comments
 (0)