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