INGOR
ytOtoPK.h
1/*
2 math/ytOtoPK.{h,c} : Online Topological Ordering by PK Algorithm
3 Copyright (C) 2018, Yoshinori Tamada <tamada A T ytlab.jp>
4 All rights reserved.
5
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions
8 are met:
9
10 * Redistributions of source code must retain the above copyright
11 notice, this list of conditions and the following disclaimer.
12
13 * Redistributions in binary form must reproduce the above copyright
14 notice, this list of conditions and the following disclaimer in
15 the documentation and/or other materials provided with the
16 distribution.
17
18 * Neither the name of Kyoto University nor the names of its
19 contributors may be used to endorse or promote products derived
20 from this software without specific prior written permission.
21
22 THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23 "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24 LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25 FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26 COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28 BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30 CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32 ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 POSSIBILITY OF SUCH DAMAGE.
34*/
35
36#ifndef __YTLIB_OTO_PK_H
37#define __YTLIB_OTO_PK_H
38
39#include "ytPCGraph.h"
40
41typedef struct {
42 int id;
43 int ord;
45
46typedef struct {
47 int size;
48 int * ord;
49 int * visited;
50 ytOtoPK_sort_t * Rf;
51 int Rfp;
52 ytOtoPK_sort_t * Rb;
53 int Rbp;
54} ytOtoPK;
55
56ytOtoPK * ytOtoPK_new(int size);
58int ytOtoPK_init(ytOtoPK * this, const ytPCGraph * g);
59void ytOtoPK_delete(void * this);
60void ytOtoPK_copy(const ytOtoPK * this, ytOtoPK * oto);
61int ytOtoPK_addEdge(ytOtoPK * this, int x, int y, ytPCGraph * g);
62int ytOtoPK_checkCyclic(ytOtoPK * this, int x, int y, const ytPCGraph * g);
63int ytOtoPK_checkCyclicReorder(ytOtoPK * this, int x, int y, const ytPCGraph * g);
64void ytOtoPK_setOrder(const ytOtoPK * this, int * ord);
65void ytOtoPK_printOrder(const ytOtoPK * this, FILE * fp);
66
67#endif /* __YTLIB_OTO_PK_H */
Definition: ytOtoPK.h:41
Online Topological Ordering by PK Algorithm.
Definition: ytOtoPK.h:46
int ytOtoPK_addEdge(ytOtoPK *this, int x, int y, ytPCGraph *g)
Adds an edge with checking if it makes the graph cyclic.
Definition: ytOtoPK.c:232
int ytOtoPK_checkCyclicReorder(ytOtoPK *this, int x, int y, const ytPCGraph *g)
Checkes if the specified edge makes the graph cyclic.
Definition: ytOtoPK.c:288
ytOtoPK * ytOtoPK_new(int size)
Generates a new ytOtoPK instance for online topological ordering.
Definition: ytOtoPK.c:59
ytOtoPK * ytOtoPK_newPCGraph(const ytPCGraph *g)
Generates a new ytOtoPK instance with a ytPCGraph.
Definition: ytOtoPK.c:78
int ytOtoPK_checkCyclic(ytOtoPK *this, int x, int y, const ytPCGraph *g)
Checkes if the specified edge makes the graph cyclic.
Definition: ytOtoPK.c:265
void ytOtoPK_setOrder(const ytOtoPK *this, int *ord)
Set the topological order.
Definition: ytOtoPK.c:308
int ytOtoPK_init(ytOtoPK *this, const ytPCGraph *g)
Reordering by the specified graph.
Definition: ytOtoPK.c:100
void ytOtoPK_delete(void *this)
Deletes the ytOtoPK instance.
Definition: ytOtoPK.c:126
Definition: ytPCGraph.h:43