INGOR
Loading...
Searching...
No Matches
CGHC.h
1#ifndef INGOR_PUB
2/*
3 algo/CGHC.{h,c} : Combinatorial Greedy Hill-climbing algorithm
4 Copyright (C) 2018, Yoshinori Tamada <tamada A T ytlab.jp>
5 All rights reserved.
6
7 See LICENSE.txt for details of the licensing agreement.
8*/
9#ifndef __INGOR_CGHC_H
10#define __INGOR_CGHC_H
11
12#include "net/ytNetwork.h"
13#include "../Args.h"
14
15#define CGHC_INVALID_SCORE (-1000000)
16
17ytNetwork * CGHC_exec(Args * args);
18
19#endif /* __INGOR_CGHC_H */
20#endif /* INGOR_PUB */
Network abstraction.
Definition Args.h:36