A set of benchmarks to compare a new prototype MiniZinc implementation
1/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */ 2 3/* 4 * Main authors: 5 * Guido Tack <guido.tack@monash.edu> 6 */ 7 8/* This Source Code Form is subject to the terms of the Mozilla Public 9 * License, v. 2.0. If a copy of the MPL was not distributed with this 10 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 11 12#ifndef __MINIZINC_BUILTINS_HH__ 13#define __MINIZINC_BUILTINS_HH__ 14 15#include <minizinc/model.hh> 16 17namespace MiniZinc { 18 19/// Add builtins to the functions defined in \a env.model() 20void registerBuiltins(Env& env); 21 22} // namespace MiniZinc 23 24#endif