98 lines
3.8 KiB
Ruby
98 lines
3.8 KiB
Ruby
class Ipopt < Formula
|
|
desc "Interior point optimizer"
|
|
homepage "https://coin-or.github.io/Ipopt/"
|
|
url "https://github.com/coin-or/Ipopt/archive/releases/3.14.5.tar.gz"
|
|
sha256 "9ebbbbf14a64e998e3fba5d2662a8f9bd03f97b1406017e78ae54e5d105ae932"
|
|
license "EPL-1.0"
|
|
head "https://github.com/coin-or/Ipopt.git", branch: "stable/3.14"
|
|
|
|
bottle do
|
|
sha256 cellar: :any, arm64_monterey: "528bdc41edb3bc0153fd4ce293a64bbc9204300a45aa6b6d3a90dd32dccebbe1"
|
|
sha256 cellar: :any, arm64_big_sur: "8b8a7fb50e85fc0f97abc5c419067bc540ed8abb97c8c73e18be6ee24002397c"
|
|
sha256 cellar: :any, monterey: "51998e1458ad0eb332e8489e484cfb1b5d73b7b3cc3b5cdbd56fb91ae486cfdb"
|
|
sha256 cellar: :any, big_sur: "c5d511fad958c0d221732869da0b15fc58cdc3219990390ec64071f265d81b9b"
|
|
sha256 cellar: :any, catalina: "0db189b8ec4400d10f16d7f5be8181dcb53f0f7483983a24e8b04a68a8183379"
|
|
sha256 cellar: :any_skip_relocation, x86_64_linux: "fd8cb54e6eef7a03510681f2dcefeb96558ec3c5ff17d660562f2ad457fedd31"
|
|
end
|
|
|
|
depends_on "openjdk" => :build
|
|
depends_on "pkg-config" => [:build, :test]
|
|
depends_on "ampl-mp"
|
|
depends_on "gcc" # for gfortran
|
|
depends_on "openblas"
|
|
|
|
resource "mumps" do
|
|
url "http://mumps.enseeiht.fr/MUMPS_5.4.0.tar.gz"
|
|
sha256 "c613414683e462da7c152c131cebf34f937e79b30571424060dd673368bbf627"
|
|
|
|
patch do
|
|
# MUMPS does not provide a Makefile.inc customized for macOS.
|
|
on_macos do
|
|
url "https://raw.githubusercontent.com/Homebrew/formula-patches/ab96a8b8e510a8a022808a9be77174179ac79e85/ipopt/mumps-makefile-inc-generic-seq.patch"
|
|
sha256 "0c570ee41299073ec2232ad089d8ee10a2010e6dfc9edc28f66912dae6999d75"
|
|
end
|
|
|
|
on_linux do
|
|
url "https://gist.githubusercontent.com/dawidd6/09f831daf608eb6e07cc80286b483030/raw/b5ab689dea5772e9b6a8b6d88676e8d76224c0cc/mumps-homebrew-linux.patch"
|
|
sha256 "13125be766a22aec395166bf015973f5e4d82cd3329c87895646f0aefda9e78e"
|
|
end
|
|
end
|
|
end
|
|
|
|
resource "test" do
|
|
url "https://github.com/coin-or/Ipopt/archive/releases/3.14.5.tar.gz"
|
|
sha256 "9ebbbbf14a64e998e3fba5d2662a8f9bd03f97b1406017e78ae54e5d105ae932"
|
|
end
|
|
|
|
def install
|
|
ENV.delete("MPICC")
|
|
ENV.delete("MPICXX")
|
|
ENV.delete("MPIFC")
|
|
|
|
resource("mumps").stage do
|
|
cp "Make.inc/Makefile.inc.generic.SEQ", "Makefile.inc"
|
|
inreplace "Makefile.inc", "@rpath/", "#{opt_lib}/" if OS.mac?
|
|
|
|
# Fix for GCC 10
|
|
inreplace "Makefile.inc", "OPTF = -fPIC",
|
|
"OPTF = -fPIC -fallow-argument-mismatch"
|
|
|
|
ENV.deparallelize { system "make", "d" }
|
|
|
|
(buildpath/"mumps_include").install Dir["include/*.h", "libseq/mpi.h"]
|
|
lib.install Dir[
|
|
"lib/#{shared_library("*")}",
|
|
"libseq/#{shared_library("*")}",
|
|
"PORD/lib/#{shared_library("*")}"
|
|
]
|
|
end
|
|
|
|
args = [
|
|
"--disable-debug",
|
|
"--disable-dependency-tracking",
|
|
"--disable-silent-rules",
|
|
"--enable-shared",
|
|
"--prefix=#{prefix}",
|
|
"--with-blas=-L#{Formula["openblas"].opt_lib} -lopenblas",
|
|
"--with-mumps-cflags=-I#{buildpath}/mumps_include",
|
|
"--with-mumps-lflags=-L#{lib} -ldmumps -lmpiseq -lmumps_common -lopenblas -lpord",
|
|
"--with-asl-cflags=-I#{Formula["ampl-mp"].opt_include}/asl",
|
|
"--with-asl-lflags=-L#{Formula["ampl-mp"].opt_lib} -lasl",
|
|
]
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
|
|
ENV.deparallelize
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
testpath.install resource("test")
|
|
pkg_config_flags = `pkg-config --cflags --libs ipopt`.chomp.split
|
|
system ENV.cxx, "examples/hs071_cpp/hs071_main.cpp", "examples/hs071_cpp/hs071_nlp.cpp", *pkg_config_flags
|
|
system "./a.out"
|
|
system "#{bin}/ipopt", "#{Formula["ampl-mp"].opt_pkgshare}/example/wb"
|
|
end
|
|
end
|