From 7b5cb0cd30c7537cc60404642b6c146a3ac39de2 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Wed, 11 Dec 2002 06:46:55 +0000 Subject: [PATCH] (relation_node): Renamed from relation_node_t. (relation_nodes): Renamed from relation_nodes_t. (relation): Renamed from relation_t. --- src/relation.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/relation.h b/src/relation.h index 45a872b..f8ecc59 100644 --- a/src/relation.h +++ b/src/relation.h @@ -1,5 +1,5 @@ /* Binary relations. - Copyright (C) 2002 Free Software Foundation, Inc. + Copyright (C) 2002 Free Software Foundation, Inc. This file is part of Bison, the GNU Compiler Compiler. @@ -24,25 +24,25 @@ /* Performing operations on graphs coded as list of adjacency. - If GRAPH is a relation_t, then GRAPH[Node] is a list of adjacent + If GRAPH is a relation, then GRAPH[Node] is a list of adjacent nodes, ended with -1. */ -typedef short relation_node_t; -typedef relation_node_t *relation_nodes_t; -typedef relation_nodes_t *relation_t; +typedef short relation_node; +typedef relation_node *relation_nodes; +typedef relation_nodes *relation; -/* Report a RELATION that has SIZE vertices. */ -void relation_print (relation_t relatio, size_t size, FILE *out); +/* Report a relation R that has SIZE vertices. */ +void relation_print (relation r, size_t size, FILE *out); -/* Compute the transitive closure of the FUNCTION on the RELATION with - SIZE vertices. +/* Compute the transitive closure of the FUNCTION on the relation R + with SIZE vertices. - If RELATION (NODE-1, NODE-2) then on exit FUNCTION[NODE-1] was - extended (unioned) with FUNCTION[NODE-2]. */ -void relation_digraph (relation_t relation, size_t size, bitsetv *function); + If R (NODE-1, NODE-2) then on exit FUNCTION[NODE - 1] was extended + (unioned) with FUNCTION[NODE - 2]. */ +void relation_digraph (relation r, size_t size, bitsetv *function); /* Destructively transpose *R_ARG, of size N. */ -void relation_transpose (relation_t *R_arg, int n); +void relation_transpose (relation *R_arg, int n); #endif /* ! RELATION_H_ */ -- 2.7.4