class Petsc < Formula desc "Portable, Extensible Toolkit for Scientific Computation (real)" homepage "https://www.mcs.anl.gov/petsc/" url "http://ftp.mcs.anl.gov/pub/petsc/release-snapshots/petsc-lite-3.9.3.tar.gz" sha256 "8828fe1221f038d78a8eee3325cdb22ad1055a2f0671871815ee9f47365f93bb" revision 1 bottle do sha256 "6e66ec170be825e239934665ef4cf7c29a15c80fa45b9f5416a2f035c858a4cb" => :mojave sha256 "c24a7548da334ed9bac84119647d9ed4694c4c2f3078b5e6641806f1e2a9fc40" => :high_sierra sha256 "7cb880e11b7da9784e3c8e2b9057090b9cacd8726f91bf5239f8f29366ef8017" => :sierra end depends_on "hdf5" depends_on "hwloc" depends_on "metis" depends_on "netcdf" depends_on "open-mpi" depends_on "scalapack" depends_on "suite-sparse" conflicts_with "petsc-complex", :because => "petsc must be installed with either real or complex support, not both" def install ENV["CC"] = "mpicc" ENV["CXX"] = "mpicxx" ENV["F77"] = "mpif77" ENV["FC"] = "mpif90" system "./configure", "--prefix=#{prefix}", "--with-debugging=0", "--with-scalar-type=real", "--with-x=0" system "make", "all" system "make", "install" end test do test_case = "#{pkgshare}/examples/ksp/ksp/examples/tutorials/ex1.c" system "mpicc", test_case, "-I#{include}", "-L#{lib}", "-lpetsc", "-o", "test" output = shell_output("./test") # This PETSc example prints several lines of output. The last line contains # an error norm, expected to be small. line = output.lines.last assert_match /^Norm of error .+, Iterations/, line, "Unexpected output format" error = line.split[3].to_f assert (error >= 0.0 && error < 1.0e-13), "Error norm too large" end end