class Gecode < Formula desc "Toolkit for developing constraint-based systems and applications" homepage "http://www.gecode.org/" url "http://www.gecode.org/download/gecode-6.0.0.tar.gz" sha256 "79b8ef0253ba5ac2cbc8b8adf45abff2884b1ba6705bc26d6a1758331e79f8db" bottle do cellar :any sha256 "2d060e1fb1c00e96a71b8cab6ef55f1ca5bfdfb9f1055cba9ab912ec3390723f" => :high_sierra sha256 "56f0ad61ca96479733c686a0bcf94640d88ab08a5931a216355db3e27aa320fc" => :sierra sha256 "a56de24c36f255f23ed845f582498fa8987f0b485bcc13de49bd5fdf715b6bbc" => :el_capitan end deprecated_option "with-qt5" => "with-qt" depends_on "qt" => :optional def install args = %W[ --prefix=#{prefix} --disable-examples ] ENV.cxx11 if build.with? "qt" args << "--enable-qt" ENV.append_path "PKG_CONFIG_PATH", "#{HOMEBREW_PREFIX}/opt/qt/lib/pkgconfig" else args << "--disable-qt" end system "./configure", *args system "make", "install" end test do (testpath/"test.cpp").write <<~EOS #include #include #if defined(GECODE_HAS_QT) && defined(GECODE_HAS_GIST) #include #if QT_VERSION >= 0x050000 #include #endif #endif using namespace Gecode; class Test : public Script { public: IntVarArray v; Test(const Options& o) : Script(o) { v = IntVarArray(*this, 10, 0, 10); distinct(*this, v); branch(*this, v, INT_VAR_NONE(), INT_VAL_MIN()); } Test(Test& s) : Script(s) { v.update(*this, s.v); } virtual Space* copy() { return new Test(*this); } virtual void print(std::ostream& os) const { os << v << std::endl; } }; int main(int argc, char* argv[]) { Options opt("Test"); opt.iterations(500); #if defined(GECODE_HAS_QT) && defined(GECODE_HAS_GIST) Gist::Print p("Print solution"); opt.inspect.click(&p); #endif opt.parse(argc, argv); Script::run(opt); return 0; } EOS args = %W[ -std=c++11 -I#{HOMEBREW_PREFIX}/opt/qt/include -I#{include} -lgecodedriver -lgecodesearch -lgecodeint -lgecodekernel -lgecodesupport -L#{lib} -o test ] args << "-lgecodegist" if build.with? "qt" system ENV.cxx, "test.cpp", *args assert_match "{0, 1, 2, 3, 4, 5, 6, 7, 8, 9}", shell_output("./test") end end