Skip to content

Commit ccee564

Browse files
committed
update pkg name
1 parent 6e97577 commit ccee564

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name = "JuGDP"
1+
name = "DisjunctiveProgramming"
22
uuid = "0d27d021-0159-4c7d-b4a7-9ccb5d9366cf"
33
authors = ["hdavid16 <[email protected]>"]
44
version = "0.1.0"

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
# JuGDP.jl
1+
# DisjunctiveProgramming.jl
22
Generalized Disjunctive Programming extension to JuMP
33

44
## Installation
55

66
```julia
77
using Pkg
8-
Pkg.add("https://github.com/hdavid16/JuGDP.jl")
8+
Pkg.add("https://github.com/hdavid16/DisjunctiveProgramming.jl")
99
```
1010

1111
## Disjunctions
@@ -22,7 +22,7 @@ To perform the Convex-Hull reformulation, `reformulation = :CHR`. If the variabl
2222

2323
```julia
2424
using JuMP
25-
using JuGDP
25+
using DisjunctiveProgramming
2626

2727
m = Model()
2828
@variable(m, 0<=x[1:2]<=10)

docs/make.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
push!(LOAD_PATH,"../src/")
2-
using JuGDP
2+
using DisjunctiveProgramming
33
using Documenter
44
makedocs(
5-
sitename = "JuGDP.jl",
6-
modules = [JuGDP],
5+
sitename = "DisjunctiveProgramming.jl",
6+
modules = [DisjunctiveProgramming],
77
pages=[
88
"Home" => "index.md"
99
])
1010
deploydocs(;
11-
repo="github.com/hdavid16/JuGDP.jl",
11+
repo="github.com/hdavid16/DisjunctiveProgramming.jl",
1212
)

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
# Overview
2-
JuGDP.jl
2+
DisjunctiveProgramming.jl

examples/ex1.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using JuMP
2-
using JuGDP
2+
using DisjunctiveProgramming
33

44
m = Model()
55
@variable(m, -1<=x<=10)

examples/ex2.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# https://optimization.mccormick.northwestern.edu/index.php/Disjunctive_inequalities
22
using JuMP
3-
using JuGDP
3+
using DisjunctiveProgramming
44

55
m = Model()
66
@variable(m, -1<=x[1:2]<=10)

examples/ex3.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using JuMP
2-
using JuGDP
2+
using DisjunctiveProgramming
33

44
m = Model()
55
@variable(m, -1<=x<=10)

examples/ex4.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
using JuMP
2-
using JuGDP
2+
using DisjunctiveProgramming
33

44
m = Model()
55
@variable(m, -1<=x[1:2]<=10)

src/JuGDP.jl renamed to src/DisjunctiveProgramming.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module JuGDP
1+
module DisjunctiveProgramming
22

33
using JuMP, IntervalArithmetic
44

0 commit comments

Comments
 (0)