git-subtree-dir: software/minizinc git-subtree-split: 4f10c82056ffcb1041d7ffef29d77a7eef92cf76
30 lines
610 B
C++
30 lines
610 B
C++
/* -*- mode: C++; c-basic-offset: 2; indent-tabs-mode: nil -*- */
|
|
|
|
/*
|
|
* Main authors:
|
|
* Kevin Leo <kevin.leo@monash.edu>
|
|
*/
|
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
#pragma once
|
|
|
|
#include <minizinc/flatten.hh>
|
|
|
|
namespace MiniZinc {
|
|
|
|
class GecodeOptions;
|
|
|
|
class GecodePass : public Pass {
|
|
GecodeOptions* _gopts;
|
|
|
|
public:
|
|
GecodePass(GecodeOptions* gopts);
|
|
|
|
Env* run(Env* e, std::ostream& log) override;
|
|
};
|
|
|
|
} // namespace MiniZinc
|