INGOR
Loading...
Searching...
No Matches
Greedy.h
1/*
2 algo/Greedy.{h,c} : 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
9#ifndef __GREEDY_H
10#define __GREEDY_H
11
12#include "net/ytNetwork.h"
13#include "../Args.h"
14
15ytNetwork * Greedy_exec(Args * args);
16ytGraph * Greedy_graph(Args * args, ytGraph * g);
17
18#endif /* __GREEDY_H */
Interface class for handling graph structure.
Network abstraction.
Definition Args.h:36