Next Article in Journal
A Pilot-Pattern Based Algorithm for MIMO-OFDM Channel Estimation
Previous Article in Journal
A Tensor Decomposition Based Multiway Structured Sparse SAR Imaging Algorithm with Kronecker Constraint
Previous Article in Special Issue
Utilizing Network Structure to Accelerate Markov Chain Monte Carlo Algorithms
 
 
Font Type:
Arial Georgia Verdana
Font Size:
Aa Aa Aa
Line Spacing:
Column Width:
Background:
Article

MultiAspect Graphs: Algebraic Representation and Algorithms

1
National Laboratory for Scientific Computing (LNCC), Av. Getúlio Vargas 333, 25651-075 Petrópolis, Brazil
2
Institut national de recherche en informatique et en automatique (INRIA), Centre national de la recherche scientifique (CNRS), Université de Lyon, École normale supérieure de Lyon, UCB Lyon 1, LIP UMR 5668, F-69342, 46, Alleé d’Italie, 69364 Lyon, France
*
Authors to whom correspondence should be addressed.
Algorithms 2017, 10(1), 1; https://doi.org/10.3390/a10010001
Submission received: 25 September 2016 / Revised: 12 December 2016 / Accepted: 19 December 2016 / Published: 25 December 2016
(This article belongs to the Special Issue Algorithms for Complex Network Analysis)

Abstract

:
We present the algebraic representation and basic algorithms for MultiAspect Graphs (MAGs). A MAG is a structure capable of representing multilayer and time-varying networks, as well as higher-order networks, while also having the property of being isomorphic to a directed graph. In particular, we show that, as a consequence of the properties associated with the MAG structure, a MAG can be represented in matrix form. Moreover, we also show that any possible MAG function (algorithm) can be obtained from this matrix-based representation. This is an important theoretical result since it paves the way for adapting well-known graph algorithms for application in MAGs. We present a set of basic MAG algorithms, constructed from well-known graph algorithms, such as degree computing, Breadth First Search (BFS), and Depth First Search (DFS). These algorithms adapted to the MAG context can be used as primitives for building other more sophisticated MAG algorithms. Therefore, such examples can be seen as guidelines on how to properly derive MAG algorithms from basic algorithms on directed graphs. We also make available Python implementations of all the algorithms presented in this paper.

1. Introduction

Graph theory finds many applications in the representation and analysis of complex networked systems [1,2,3]. In most cases, the utility of the graph abstraction comes from its inherent ability to represent binary transitive relations (i.e., transitive relations between two objects), which due to the transitivity property gives raise to key concepts, such as walks, paths, and connectivity. This graph conceptual framework allowed the emergence of basic algorithms, such as Breadth First Search (BFS) and Depth First Search (DFS) [4,5]. These basic graph algorithms, in their turn, allow the development of more sophisticated algorithms for the analysis of specific properties of complex networks, such as algorithms for computing some shortest-path-based network centralities or algorithms for analyzing network robustness [6,7,8,9]. Additionally, these basic graph algorithms also allow the analysis of dynamic processes in complex networks, such as network generative processes or information diffusion [10,11,12,13]. Moreover, several generalizations of the basic graph concept have been proposed for modelling complex systems that can be represented by layers of distinct networks [14,15] and also complex systems in which the network itself evolves with time [16,17].
In our previous work [18], we formalize the MultiAspect Graph (MAG) structure, while also stating and proving its main properties. The adopted adjacency concept in MAGs is similar to the one found in simple directed graphs, where the adjacency is expressed between two vertices, leading to a structure in which an edge represents a binary relation between two composite objects. Moreover, in [18], we show that MAGs are closely related to simple directed graphs, as we prove that each MAG has a simple directed graph, which is isomorphic to it. This isomorphism relation between MAGs and directed graphs is a consequence of the fact that both MAGs and directed graphs share a similar adjacency relation.
MAGs find application in the representation and analysis of dynamic complex networks, such as multilayer or time-varying networks; or even networks that are both multilayer and time-varying as well as higher-order networks [19,20]. Examples of such networks include face-to-face in-person contact networks [21], mobile phone networks [22,23], gene regulatory networks [24], urban transportation networks [25], brain networks [26,27], social networks [28], among many others. In particular, we have previously applied the MAG abstraction from [18] to different purposes, such as modeling time-varying graphs [29], studying time centrality in dynamic complex networks [30], and investigating social events based on mobile phone networks [31]. To illustrate the MAG concept in more details in this paper, we present in Section 3 an example of modeling a simple illustrative multimodal urban transportation network.
In this paper, we build upon the basic MAG properties presented in [18] and show that MAGs can be represented by matrices in a form similar to those used for simple directed graphs (i.e., those with no multiple edges). Moreover, we here show that any algorithm (function) on a MAG can be obtained from its matrix representation. We then present the most common matrix representations that can be applied to MAGs, although we do not detail all the properties of these matrices, since they are well established in the literature [5,32]. Further, we introduce in detail the construction of MAG algorithms for computing degree, BFS, and DFS to exemplify how MAG algorithms can be derived from traditional graph algorithms, thus providing an illustrative guideline for developing other more sophisticated MAG algorithms in a similar way. Given that a MAG is isomorphic to a directed graph as shown in [18], the algebraic representation and algorithms for MAGs discussed in this paper closely resemble those for directed graphs. This isomorphism between MAGs and directed graphs constitutes an important theoretical result from [18] that paves the way for adapting well-known graph algorithms for application in MAGs, thus easing the effort to develop the analysis and application of MAGs for modelling complex networked systems, as we discuss in this paper. Therefore, the particular contribution of this paper is to discuss and to show how to build algebraic representations and algorithms for the MAG abstraction (topics that are not covered in the original MAG paper), bringing theoretical results related to these contributions. As a further contribution, we also make available Python implementations of all the algorithms presented in this paper at the following URL: http://github.com/wehmuthklaus/MAG_Algorithms.
This paper is organized as follows. Section 2 briefly presents the basic MAG definitions and properties derived from [18] in order to allow enough background of the current paper. Section 2 also presents illustrative examples of MAGs and its adjacency notion. Section 3 shows the representation of MAGs by means of algebraic structures, such as matrices. Emphasis is given to matrix representations, which are derived from the isomorphism relation between MAGs and simple directed graphs. In particular, we also introduce in Section 3.1 the companion tuple, which is a complement to the MAG matrix representations. In Section 4, we present basic MAG algorithms which are derived from well-known simple graph algorithms. Further, in Section 4.2, we show that any algorithm (function) that can be defined for a MAG can be also obtained from its adjacency matrix and companion tuple, establishing the theoretical basis for deriving MAG algorithms from well-known simple graph algorithms. Finally, Section 5 presents our final remarks and perspectives for future work.

2. MultiAspect Graph (MAG)

In this section, we present a formal definition of a MAG, as well as some key properties, which are formally stated and proved in [18].

2.1. MAG Definition

We define a MAG as H = ( A , E ) , where E is a set of edges and A is a finite list of aspects. Each aspect φ A is a finite set, and the number of aspects p = | A | is called the order of H. Each edge e E is a tuple with 2 × p elements. All edges are constructed so that they are of the form ( a 1 , , a p , b 1 , , b p ) , where a 1 , b 1 are elements of the first aspect of H, a 2 , b 2 are elements of the second aspect of H, and so on, until a p , b p which are elements of the p-th aspect of H. Note that the ordered tuple that represents each MAG edge is constructed so that their elements are divided into two distinct groups, each having exactly one element of each aspect, in the same sequence as the aspects are defined on the list A.
As a matter of notation, we say that A ( H ) is the aspect list of H and E ( H ) is the edge set of H. Further, A ( H ) [ n ] is the n-th aspect in A ( H ) , | A ( H ) [ n ] | = τ n is the number of elements in A ( H ) [ n ] , and p = | A ( H ) | is the order of H.
In addition to the former definition, we define the following two sets constructed from the cartesian products of aspects of an order p MAG:
V ( H ) = n = 1 p A ( H ) [ n ] ,
the cartesian product of all the aspects of the MAG H, and
E ( H ) = n = 1 2 p A ( H ) [ ( n 1 ) ( m o d p ) + 1 ] ,
which is the set of all possible edges in the MAG H, so that E ( H ) E ( H ) .
We call u V ( H ) a composite vertex of MAG H. As a matter of notation, a composite vertex is always represented as a bold lowercase letter, as in u , for instance. From the properties stated for the MAG edge in our definition, it follows that an MAG edge is closely related to an ordered pair of composite vertices. For any given MAG H, every MAG edge e E ( H ) has the form ( a 1 , , a p , b 1 , , b p ) , so that ( a 1 , , a p ) V ( H ) and ( b 1 , , b p ) V ( H ) are composite vertices of this given MAG H. From this, we can define two functions
π o : E ( H ) V ( H ) e = ( a 1 , a 2 , , a p , b 1 , b 2 , , b p ) ( a 1 , a 2 , , a p ) = u ,
and
π d : E ( H ) V ( H ) e = ( a 1 , a 2 , , a p , b 1 , b 2 , , b p ) ( b 1 , b 2 , , b p ) = v .
We call π o ( e ) the origin composite vertex of e and π d ( e ) the destination composite vertex of e. Moreover, we can define the function
ψ : E ( H ) V ( H ) V ( H ) e ( π o ( e ) , π d ( e ) ) = ( ( a 1 , , a p ) , ( b 1 , , b p ) ) = ( u , v ) ,
from which we can construct a directed graph G H = ( V ( H ) , ψ ( E ( H ) ) . In [18], we demonstrate that the directed graph G H = ( V ( H ) , ψ ( E ( H ) ) is isomorphic to the MAG H from which it was originated. At this point, we can therefore define the function
g : ( A ( H ) , E ( H ) ) ( V ( H ) , V ( H ) V ( H ) ) H ( V ( H ) , ψ ( E ( H ) ) ,
which maps every MAG H to its isomorphic directed graph g ( H ) . Further, we define the set of functions
π i : V ( H ) A ( H ) [ i ] ( a 1 , a 2 , , a p ) a i ,
which extracts the n-th element of a composite vertex tuple.

2.2. MAG Sub-Determination

The sub-determination is a generalization of the aggregation concept applied to multilayer or time-varying graphs, in which all layers can be aggregated, resulting in a traditional graph. Since a MAG can have more than two aspects, the sub-determination can be done in more ways than the aggregation.
A given MAG H of order p, can be sub-determined in 2 p 2 ways. For each of these 2 p 2 ways, we have a list A C ( H ) A ( H ) of the aspects used to determine an equivalence class. Note that in a MAG of order p = 1 (i.e., a traditional graph), a vertex can not be sub-determined, since 2 p 2 = 0 .

2.2.1. Sub-Determined Composite Vertices

Let ζ, with 1 ζ 2 p 2 , be an index for one of the possible ways to construct a proper nonempty sublist of aspects. From this, we can define a canonical representation of the sub-determination directly defined by ζ. For any given ζ, we consider the p-bit binary expansion of ζ that is used as an indicator showing which aspects of the original MAG are present on the sub-determination. More specifically, the least significant bit indicates the presence or absence of the first aspect and the most significant bit indicates the presence or absence of the last aspect. By this convention, in a MAG with p = 3 aspects, we have that ζ = 001 2 corresponds to the sub-determination where only the first aspect is present, ζ = 010 2 corresponds to the sub-determination where only the second aspect is present, ζ = 101 2 corresponds to the sub-determination where both the first and the third aspects are present, and so on. By using this convention, we can directly associate a given ζ to its corresponding aspect sublist.
Therefore, for each ζ, we have a unique sublist A ζ ( H ) of aspects, such that p ζ = | A ζ ( H ) | is the order of the sub-determination ζ. We now define the set
V ζ ( H ) = n = 1 p ζ A ζ ( H ) [ n ] ,
where V ζ ( H ) is the cartesian product of all the aspects in the sublist A ζ ( H ) of aspects, according to the index ζ. We call u ζ V ζ ( H ) a sub-determined vertex, according to the sub-determination ζ.
We can now define the function
S ζ : V ( H ) V ζ ( H ) ( a 1 , a 2 , , a p ) ( a ζ 1 , a ζ 2 , , a ζ m ) ,
where m = p ζ . S ζ maps a composite vertex u V ( H ) to the corresponding sub-determined composite vertex u ζ V ζ ( H ) , according to the sub-determination ζ. As ( a ζ 1 , a ζ 2 , , a ζ m ) V ζ ( H ) , it follows that a ζ 1 A ζ ( H ) [ 1 ] , , a ζ m A ζ ( H ) [ m ] . From the definition, it can be seen that the function S ζ is not injective. Hence, the function S ζ for a given sub-determination can be used to define a equivalence relation ζ in V ( H ) , where for any given composite vertices u , v V ( H ) , we have that u ζ v if and only if S ζ ( u ) = S ζ ( v ) .

2.2.2. Sub-Determined Edges

From the sub-determination ζ of order p ζ , we can also construct the set
E ζ ( H ) = n = 1 2 × p ζ A ζ ( H ) [ ( n 1 ) ( m o d p ζ ) + 1 ] ,
where p ζ = | A ζ ( H ) | is the order of the sub-determination ζ, and E ζ ( H ) is the set of all possible sub-determined edges according to ζ. We then define the function
E ζ : E ( H ) E ζ ( H ) ( a 1 , a 2 , , a p , b 1 , b 2 , , b p ) ( a ζ 1 , a ζ 2 , , a ζ m , b ζ 1 , b ζ 2 , , b ζ m ) ,
where m = p ζ and a ζ 1 , b ζ 1 A ζ ( H ) [ 1 ] , a ζ 2 , 2 ζ 2 A ζ ( H ) [ 2 ] , , a ζ m , b ζ m A ζ ( H ) [ m ] . This function takes an edge to its sub-determined form according to ζ in a similar way as defined above for composite vertices. In general, the function E ζ is not injective. Consider two distinct edges e 1 , e 2 E ( H ) , such that e 1 and e 2 differ only in aspects which are not in A ζ ( H ) . Since E ζ ( · ) only contains values for aspects present in A ζ ( H ) , it follows that E ζ ( e 1 ) = E ζ ( e 2 ) , and therefore E ζ is not injective. Further, consider an edge e E ( H ) and its sub-determined edge e ζ = E ζ ( e ) , such that π o ( e ζ ) = π d ( e ζ ) , i.e., e ζ is a self-loop. Since self-loops are not allowed to be present on a MAG, it follows that e ζ E ζ ( E ( H ) ) . As consequence, we have that | E ζ ( E ( H ) ) | | E ( H ) | .

2.2.3. Sub-Determined MAGs

For a given sub-determination ζ we have the sublist A ζ ( H ) of considered aspects and also the sub-determined edges obtained from ζ. Based on them, we can now obtain a sub-determined MAG. For a given sub-determination ζ we define the function
M ζ : ( A ( H ) , E ( H ) ) ( A ζ ( H ) , E ζ ( H ) ) H ( A ζ ( H ) , E ζ ( E ( H ) ) ) .
Since A ζ ( H ) is the sublist of aspects of H prescribed by ζ and E ζ ( E ( H ) ) is the set of all sub-determined edges according to the sub-determination ζ, it follows that ( A ζ ( H ) , E ζ ( E ( H ) ) ) is a MAG obtained from H according to the sub-determination ζ. As | A ζ ( H ) | < | A ( H ) | , it follows that the order of M ζ ( H ) is lower than the order of H. Further, since self-loops may be created by edge sub-determination and discarded, and also since E ζ is not injective, it follows that | E ζ ( E ( H ) ) | | E ( H ) | .

2.3. MAG Adjacency

Two composite vertices are considered adjacent if they share the same MAG edge, i.e., given two composite vertices u , v V ( H ) are adjacent if and only if there is a MAG edge e E ( H ) such that u , v { π o ( e ) , π d ( e ) } . Similarly, two MAG edges are considered adjacent if and only if they share a same composite vertex, i.e., two given edges e 1 , e 2 E ( H ) are adjacent if and only if there is a composite vertex u V ( H ) such that u { π o ( e 1 ) , π d ( e 1 ) } and u { π o ( e 2 ) , π d ( e 2 ) } .
Figure 1 shows an illustrative example of three MAG edges. The figure depicts a four aspects MAG, where each set of colored circles represents one aspect, and each edge has two elements of each aspect.
The isolated edge ( A 1 , A 2 , A 3 , A 4 , C 1 , C 2 , C 3 , C 4 ) on the leftmost side of Figure 1 exemplifies the composite vertex adjacency concept. In this case the composite vertices ( A 1 , A 2 , A 3 , A 4 ) and ( C 1 , C 2 , C 3 , C 4 ) are adjacent. The two edges ( E 1 , E 2 , E 3 , E 4 , H 1 , H 2 , H 3 , H 4 ) and ( H 1 , H 2 , H 3 , H 4 , K 1 , K 2 , K 3 , K 4 ) exemplify a case of edge adjacency. Since the composite vertex ( H 1 , H 2 , H 3 , H 4 ) is shared by both edges, they are adjacent.
Although the structure of a MAG edge is similar to an even uniform hypergraph edge, the adjacency definition used on MAGs is not the usual one adopted on hypergraphs. The adjacency concept found on a MAG is close to the one associated with traditional directed graphs, where a MAG edge can be seen as a relation between two composite vertices, which are composite objects constructed from aspect elements. Therefore, a MAG edge expresses a relationship between two (composite) objects in the same way as a directed graph edge. This concept leads to the isomorphism between MAGs and directed graphs, as well as the close relation between walks, trails, and paths on MAGs and directed graphs.

2.4. MAG Isomorphism

Before formally defining the MAG isomorphism, it is necessary to define the concept an aspect list bijection. Given two MAGs H and K, both with p aspects, an aspect list bijection F : A ( H ) A ( K ) is defined as a set of p bijective functions, f 1 , f 2 , , f p , such that each aspect of the MAG H is the domain of exactly one of these functions and each aspect of MAG K is the codomain of exactly one of these functions. It follows from this definition that given a composite vertex u V ( H ) , the aspect list bijection F takes u to a composite vertex F ( u ) V ( K ) .
Two MAGs of order p, H and K, are isomorphic if there is an aspect list bijection F : A ( H ) A ( K ) such that an edge e E ( H ) if and only if the edge ( F ( π o ( e ) ) , F ( π d ( e ) ) ) E ( K ) .

2.5. MAG Walks, Trails, and Paths

There is a close relation between walks, trails, and paths on a MAG and their counterparts in the isomorphic directed graph g ( H ) .
A walk on a MAG H is defined as an alternating sequence W = [ u 1 , e 1 , u 2 , e 2 , u 3 , , u k 1 , e k 1 , u k ] of composite vertices u n V ( H ) and edges e m E ( H ) , such that u n = π o ( e n ) and u n + 1 = π d ( e n ) for 1 n < k . It follows from this definition that in a walk, consecutive composite vertices as well as consecutive MAG edges are adjacent.
We show in [18] that an alternating sequence W of composite vertices and edges in a MAG H is a walk on H if and only if there is a corresponding walk G W in the composite vertices representation of H. This means that a walk on a MAG H has a isomorphic walk on the directed graph g ( H ) . Since trails and paths also are walks, we also show that the same isomorphism concept extends to them as well.
Figure 1 can also exemplify a MAG path. The two edges ( E 1 , E 2 , E 3 , E 4 , H 1 , H 2 , H 3 , H 4 ) and ( H 1 , H 2 , H 3 , H 4 , K 1 , K 2 , K 3 , K 4 ) can also be seen as part of the alternating sequence P = ( E 1 , E 2 , E 3 , E 4 ) , ( E 1 , E 2 , E 3 , E 4 , H 1 , H 2 , H 3 , H 4 ) , ( H 1 , H 2 , H 3 , H 4 ) , ( H 1 , H 2 , H 3 , H 4 , K 1 , K 2 , K 3 , K 4 ) , ( K 1 , K 2 , K 3 , K 4 ) , which characterizes a two-hops path from the composite vertex ( E 1 , E 2 , E 3 , E 4 ) to the composite vertex ( K 1 , K 2 , K 3 , K 4 ) .
From the concept that walks, trails, and paths on a MAG have a isomorphism relation to their counterparts on the directed graph g ( H ) , it follows that analysis and algorithms based on walks, trails, and paths can be formulated on the directed graph g ( H ) . These properties will be extensively used in the current work.

3. Algebraic Representation

In this section, we discuss ways to represent MAGs [18] by means of algebraic structures. As a consequence to the isomorphism between MAGs and traditional directed graphs, it is straightforward to construct matrix-based representations of MAGs. This section addresses these representations, using the MAG depicted in Figure 2 as an illustrative example.
Figure 2 shows an illustrative example of a three aspect MAG T. It can be seen as a representation of a time-varying multilayer network, showing a hypothetical simple urban transit system. More specifically, Figure 2 depicts the MAG T in its composite vertices representation, g ( T ) , which is the directed graph defined in Expression (6).
Aligned with this view, the aspects of MAG T can be interpreted in the following way: The first aspect represents three distinct locations, labeled 1, 2 and 3. Specifically, location 1 represents a subway station, location 2 a subway station with a bus stop, and location 3 a bus stop. The second aspect represents two distinct urban transit modes depicted as layers, namely Bus and Subway. Finally, the third aspect represents three time instants. The MAG edges can be seen with the following meaning: Location 1 has no edges on the bus transit mode, since it is a subway station. Similarly, location 3 has no edges on the subway mode, since it is a bus stop. The eight black edges represent bus and subway trips between locations. As a simplification all trips are assumed to have the same duration. The red (dotted) edges represent the possibility of staying at a bus stop or subway station and not taking a transit. The six blue (dashed) edges show that it is possible to change between bus and subway layers at all times at location 2. As a simplification, the connection between the bus and subway layers is assumed to take no time. We recognize that the decision of making these edges with 0 time length generates cycles of length 0 in instances of location 2. In real network analysis, 0 length cycles (and also negative length cycles) can cause problems. However, we choose to let these cycles present in this toy example since they will cause no harm for the analysis conducted in this thesis, and also, they make the toy example more compact and readable. Further, we remark that if desired, these 0 length cycles could be broken by adding new composite vertices, or by making the subway/bus transition to have the same length as a subway/bus trip.
In this model, walks represent the ways the urban transit system can be used to travel from one location to another. For instance, starting at location 1 on the subway layer at time t1, it is possible to reach location 3 on the bus layer at time t3. It can be done by taking a subway trip to location 2 at time t2, switching from subway to bus layer at location 2, time t2 and finally taking a bus trip from location 2 bus layer arriving at location 3 on the bus layer at time t3.
The presence of unconnected occurrences of location 1 at bus layer and location 3 at subway layer can be viewed as artefacts of the MAG construction. We call these vertices trivial components of the MAG. This subject will be further addressed in this section.

3.1. Companion Tuple

Although we show that every MAG H is isomorphic to a directed graph designated g ( H ) , it is important to note that the set of vertices of this graph is V ( H ) , as shown in Expression (6). Since the set V ( H ) is the cartesian product of all the aspects in the MAG H, it is possible to reconstruct the MAG’s aspect list from V ( H ) , which is a step necessary to obtain the MAG H from the directed graph g ( H ) . When the vertices of the directed graph G associated with a given MAG H are not the composite vertices themselves, it is necessary to provide a mechanism to link each vertex of the directed graph to its corresponding composite vertex on the MAG. This mechanism can be, for instance, a bijective function between V ( H ) and V ( G ) .
In the current work, we construct representations for g ( H ) , such as matrices, which do not directly carry the tuples that characterize the MAG’s composite vertices. In this kind of representation, a vertex is associated with a row or column of a matrix. Therefore, additional information has to be provided to properly link each row (column) of a matrix to its corresponding composite vertex on the MAG represented by this matrix. This is done by a bijective function D, defined in Section 3.2, where D takes a composite vertex to a natural number, which is the row (column) number in the matrix.
The implementation of D presented in this work is based on the concept of a companion tuple, which complements the matrix representation of a given MAG. For a MAG H with p aspects, its companion tuple has the form ( | A ( H ) [ 1 ] | , | A ( H ) [ 2 ] | , , | A ( H ) [ p ] | ) , so that the number of elements on it equals the order of H and each element represents the number of elements of an aspect of H. As a matter of notation, we represent the companion tuple of a given MAG H as
τ ( H ) = ( | A ( H ) [ 1 ] | , | A ( H ) [ 2 ] | , , | A ( H ) [ p ] | ) ,
where p is the order of H. When there is no ambiguity in relation to which MAG we are referring to, we may use the notation τ instead of τ ( H ) . For instance, the companion tuple of the MAG T shown in Figure 2 is τ ( T ) = ( 3 , 2 , 3 ) , since T has 3 aspects, of which the first has 3 elements, the second 2 elements, and the third 3 elements.
Algorithm 1 shows the building of the companion tuple for a given MAG H. Assuming that the size of the aspect list A ( H ) and the size of each of the aspect sets contained in A ( H ) are known from the computational representation of A ( H ) , the time complexity for building the companion tuple is O ( p ) , where p is the number of aspects on MAG H. If, however, these sizes are unknown, then the time complexity is O ( s ) , where s = i = 1 p | A ( H ) [ i ] | , since each element of each aspect has to be counted. We remark that, in either case, the time complexity for building the companion tuple is less than O ( V ( H ) ) , which is the cardinality of the set of composite vertices of the MAG.
Algorithm 1: Construction of the companion tuple of a MAG.
Algorithms 10 00001 i001
For a given MAG H and a sub-determination ζ, we also define the sub-determined companion tuple τ ζ ( H ) , which is obtained by multiplying each entry of the original companion tuple by the equivalent entry of the tuple representation of ζ, as shown in Algorithm 2. The sub-determined companion tuple has the same value as the original companion tuple for the aspects that have value 1 in ζ and 0 otherwise.
Algorithm 2: Construction of sub-determined companion tuple.
Algorithms 10 00001 i002

3.2. Ordering of Composite Vertices and Aspects

In general, the sequence in which the composite vertices and aspects are organized on a MAG is not relevant. That is, changing the sequence in which the aspects or their elements are presented does not affect the result of any algorithm or analysis performed on a MAG, since the MAG obtained by such changes is isomorphic to the original one. The definition of the MAG isomorphism adopted in this work can be found in Section 2.4. However, to show the MAG’s algebraic representation in a consistent way, it is necessary to link the MAG’s composite vertices to rows and columns of matrices, which is achieved by the bijective function D, defined in this section at Equation (15). We now show the preliminary steps necessary for the definition of function D, as implemented in this work.
The aspect sequence is adopted as the same in which the aspects are placed on the MAG’s companion tuple. For the ordering of composite vertices, we define the numerical representation of each composite vertex from its tuple. To obtain the composite vertex numerical representation, we first translate the composite vertex into a numerical tuple. This is done by applying a family of indices, one for each aspect on the composite vertex, where for every aspect i the corresponding index ranges from 0 to τ i 1 , where τ i is the number of elements on the i-th aspect of the MAG. Since this is a simple index substitution, we do not use a distinct notation for the composite vertex on its numerical tuple form. We, however, reserve the notation u [ i ] to express the i-th element of the composite vertex on its numerical form.
To calculate the numerical representation of a composite vertex, we define the weight of each position on the composite vertex tuple of a MAG H with p aspects as
W ( i , τ ) = 1 if i = 1 , j = 1 i 1 τ j otherwise ,
where i is the position in the tuple varying from 1 to p, τ is the MAG’s companion tuple, and τ j is the j-th element of the MAG’s companion tuple. Note that | τ | = p meaning that the length of the companion tuple is the order of the MAG, i.e., the number of its aspects. Finally, we define the composite vertex numerical representation as
D ( u , τ ) = 1 + i = 1 | τ | W ( i , τ ) × u [ i ] ,
where | τ | = p is the MAG’s order, and v [ i ] is the i-th component of the composite vertex. Figure 3 shows the MAG T with its composite vertices, and their numerical representations ranging from (1) to (18). To illustrate how the numerical representations are obtained, we show examples based on the MAG T.
For this representation, we adopt aspect indices such that for aspect 1 we have I d x ( 1 ) = 0 , I d x ( 2 ) = 1 and I d x ( 3 ) = 2 . For aspect 2, we have I d x ( B u s ) = 0 and I d x ( S u b w a y ) = 1 , while for aspect 3, I d x ( t 1 ) = 0 , I d x ( t 2 ) = 1 and I d x ( t 3 ) = 2 . Since the companion tuple of MAG T is τ ( T ) = ( 3 , 2 , 3 ) = τ , the weights are W ( 1 , τ ) = 1 , W ( 2 , τ ) = τ 1 = 3 and W ( 3 , τ ) = τ 1 × τ 2 = 6 . Therefore, the composite vertex v = ( 1 , B u s , t 1 ) has numerical representation D ( v , τ ) = 1 + 1 × 0 + 3 × 0 + 6 × 0 = 1 , while D ( ( 2 , S u b w a y , t 2 ) , τ ) = 1 + 1 × 1 + 3 × 1 + 6 × 1 = 11 and D ( ( 2 , B u s , t 3 ) , τ ) = 1 + 1 × 1 + 3 × 0 + 6 × 2 = 14 .
Algorithm 3 determines the numerical representation of a composite vertex v represented by its numerical tuple. The presented implementation extends the concepts presented in Equations (14) and (15), so that this algorithm can also be used to determine the numerical representation of sub-determined composite vertices. To determine the numerical representation of a sub-determined vertex, function D shown in Algorithm 3 receives the full composite vertex tuple (not sub-determined) and the sub-determined companion tuple. The if seen at line 7 of Algorithm 3 makes that the 0 entries found in a sub-determined companion tuple are discarded for the construction of the sub-determined numerical representation of the composite vertex. The time complexity for this algorithm is O ( p ) , where p is the number of aspects on the MAG in question.
Algorithm 3: Determination of the numerical representation of a composite vertex.
Algorithms 10 00001 i003
Given the numerical representation of any composite vertex, it is possible to reconstruct its tuple. To do this, we calculate the numerical value of the index of each element on the tuple, as
N ( d , i , τ ) = ( d 1 ) m o d W ( i + 1 , τ ) / W ( i , τ ) ,
where d is the composite numerical representation, i is the position of the composite vertex tuple to be calculated, τ is the MAG’s companion tuple, m o d is the modulus (division remainder) operation and x is the floor operator, which for any x R corresponds to the largest integer i Z such that i x . Note that for calculating N ( d , p , τ ) for a MAG with p aspects, it is necessary to calculate W ( p + 1 , τ ) . Considering the definition of W from Equation (14), it follows that W ( p + 1 , τ ) = j = 1 p = | V ( H ) | , the number of composite vertices on the MAG.
For instance, taking the composite vertex with numerical representation 14 of the MAG T, we have that
N ( 14 , 1 , ( 3 , 2 , 3 ) ) = ( ( 14 1 ) m o d 3 ) / 1 = 1 / 1 = 1 N ( 14 , 2 , ( 3 , 2 , 3 ) ) = ( ( 14 1 ) m o d 6 ) / 3 = 1 / 3 = 0 N ( 14 , 3 , ( 3 , 2 , 3 ) ) = ( ( 14 1 ) m o d 18 ) / 6 = 13 / 6 = 2 .
We can therefore define the inverse of function D as
D 1 ( d , τ ) = ( N ( d , 1 , τ ) , N ( d , 2 , τ ) , , N ( d , | τ | , τ ) ) ,
which reconstructs the composite vertex tuple in its numerical form. From this, we can see that, for instance, D 1 ( 14 , ( 3 , 2 , 3 ) ) = ( 1 , 0 , 2 ) , which corresponds to the composite vertex ( 2 , B u s , t 3 ) . Algorithm 4 shows the implementation of D 1 .
The relation between the composite vertex numerical representation and its tuple can also be seen as a consequence of the natural isomorphism between the MAG H and its composite vertices representation, g ( H ) . The role of this relation will become clear in Section 3.4 and Section 3.5, where the matrix forms of the MAG are presented.
Algorithm 4: Determination of the composite vertex from its numerical representation.
Algorithms 10 00001 i004

3.3. Elimination of Trivial Components

In the MAG T shown in Figure 3 the composite vertices of numerical representation ( 1 ) , ( 6 ) , ( 7 ) , ( 12 ) , ( 13 ) , and ( 18 ) are trivial components (i.e., unconnected composite vertices). They are created in consequence of the regularity needed on the MAG H to build the set V ( H ) . This type of padding is not necessary in a directed graph and its algebraic representation. Therefore, it is possible to remove the trivial components from the composite vertices representation and its associated matrices. However, it is important to bear in mind that the graph resulting from this transformation may no longer be isomorphic to the MAG and neither are the matrices associated with it. The only case in which the isomorphism is preserved is when there are no trivial components on the MAG and nothing is removed. Nevertheless, this kind of transformation can be helpful for application, by reducing the number of composite vertices present on the graph and so simplifying its construction and manipulation.
The same sort of padding is discussed in [15], where authors suggest that this padding may cause problems in the computing of some metrics, such as mean degree or clustering coefficients, unless one accounts for the padding scheme in an appropriate way. In this subsection, we show that the padding with the trivial components may be eliminated, if desired. Anyway, if needed, it suffices to be cautious in computing the metrics of interest on MAGs by considering the existence of the padding scheme, as suggested by [15]. In particular, the MAG algorithms we discuss in Section 4 remain unaffected by this padding issue.
For a given MAG H, we define its main components graph m ( H ) as the MAG’s composite vertices representation with all its trivial components removed. Figure 4 shows the main components graph m ( T ) for the MAG T. It is worth noting that numerical representations are not defined for m ( T ) .
This can be achieved algebraically for any MAG H with the help of a matrix R ( H ) constructed from the identity I R n × n , where n = | V ( H ) | is the number of composite vertices on the MAG. The matrix R ( H ) is obtained from this n × n identity by removing the columns which match the numerical representations of the trivial components of the MAG. Therefore, assuming that the MAG H has r trivial components, the matrix R ( H ) R n × n r has n rows and n r columns. In particular, in the cases where the MAG H has no trivial components, we have that R ( H ) = I R n × n .
It is also worth noting that the matrix I m ( H ) = R ( H ) R ( H ) T R n × n is a matrix akin to the identity I R n × n , but the diagonal entries corresponding to the trivial components (removed in R ( H ) ) have value 0. Therefore, multiplying a n × n matrix by I m ( H ) to the left has the effect of turning all entries on the rows corresponding to the trivial components to 0 s. Similarly, multiplying by I m ( H ) to the right has the effect of turning the entries of the columns corresponding to the trivial elements to 0 s.
As an example, we show the matrix R ( T ) R 18 × 12 ,
R ( T ) = 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 ,
which is obtained from the 18 × 18 identity matrix by removing the columns 1 , 6 , 7 , 12 , 13 , and 18 that correspond to the trivial components of the MAG T.
The algebraic form of the elimination of the trivial components is presented in Equation (22) in Section 3.4, after the required definition of adjacency matrix.

3.4. Adjacency Matrix

As a direct consequence of the isomorphism between MAGs and traditional directed graphs, it is expected that a MAG can be represented in matrix form. In fact, such representations can be achieved directly by the composite vertices representation of MAGs, presented in Section 2.1. Since for any given MAG H its composite vertices representation is a traditional directed graph, it can be represented in matrix form.
One of such representations is the MAG’s adjacency matrix. This matrix is obtained from the MAG’s composite vertices representation, g ( H ) , and its companion tuple τ ( H ) . In fact, the MAG’s adjacency matrix is the adjacency matrix of the composite vertices representation, where the sequence of the rows and columns is given by the numerical representation of the composite vertices of g ( H ) .
Since the set V ( H ) of composite vertices of a given MAG H is obtained by the cartesian product of all aspects of the MAG (as shown in Expression (1)), it follows that the number of composite vertices on a given MAG H with p aspects is
n = | V ( H ) | = i = 1 p τ i ,
where τ i is the i-th element of the MAG’s companion tuple, i.e., the number of elements on the MAG’s i-th aspect.
The general form of any entry of the matrix J ( H ) is given by
j u , v = 1 if ( u , v ) E ( g ( H ) ) , 0 otherwise ,
where ( u , v ) E ( g ( H ) ) means that ( u , v ) is an edge on the composite vertices representation g ( H ) of the MAG H, so that u , v V ( H ) are composite vertices of H. It follows from the definition of g ( H ) and its natural isomorphism to H, that ( u , v ) E ( g ( H ) ) if and only if there is an edge e E ( H ) such that u = π o ( e ) and v = π d ( e ) . It is important to note, however, that the notation j u , v is in fact a shorthand for j D ( u , τ ) , D ( v , τ ) , where D ( u , τ ) is the row number and D ( v , τ ) the column number of the matrix entry. This ties the construction of the adjacency matrix of a MAG with its companion tuple, since it is used in the determination of the numerical representation of a composite vertex ( D ( u , τ ) ). Therefore, the adjacency matrix of any given MAG is always presented with its companion tuple.
The adjacency matrix of a given MAG H is constructed by Algorithm 5, where | V ( H ) | is the number of composite vertices in H, which can be calculated using Equation (19), D ( π o ( e ) , τ ) and D ( π d ( e ) , τ ) are the numerical representation of the origin and destination composite vertices of edge e E ( H ) , respectively, as defined in Section 3.2.
Algorithm 5: Building J ( H ) from MAG H.
Algorithms 10 00001 i005
Considering that a sparse matrix with all entries 0 can be created in constant time, and that both functions C o m p T u p l e and D (see Algorithms 1 and 3) have time complexity O ( p ) , we conclude that Algorithm 5 has time complexity O ( p * | E ( H ) | ) , where p is the number of aspects of MAG H and | E ( H ) | the number of edges.
As an example, the adjacency matrix of the MAG T is shown in Expression (21). This adjacency matrix J ( T ) R 18 × 18 has 324 entries, of which just 22 are non-zero.
J ( T ) = 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0
It is important to note that the sequence of the columns and rows of J ( T ) is given by the numerical representation of the composite vertices. Thus, for instance, the 1 at row 2, column 8 represents the edge between the composite vertices with numerical representations 2 and 8, witch in turn represents the edge ( 2 , B u s , t 1 , 2 , B u s , t 2 ) of the MAG T. In this way, although J ( T ) is presented in matrix form, together with the companion tuple τ ( T ) , it fully represents the MAG T, carrying the proper adjacency notion used to define transitive constructions, such as walks and paths on the MAG.
For an arbitrary MAG H, its main components graph m ( H ) is obtained by removing the MAG’s trivial components, as stated in Section 3.3. The matrix J ( m ( H ) ) is then obtained with the use of the matrix R ( H ) , presented in Section 3.3. J ( m ( H ) ) is obtained as
J ( m ( H ) ) = R ( H ) T J ( H ) R ( H ) ,
where J ( m ( H ) ) R n r × n r is the adjacency matrix containing only the main components of the MAG.
It is also possible to obtain the adjacency matrix J ( H ) from J ( m ( H ) ) . This follows from the fact that on the adjacency matrix J ( H ) the rows and columns corresponding to trivial components are already zero. Therefore,
J ( H ) = I m ( H ) J ( H ) I m ( H ) ,
where I m ( H ) = R ( H ) R ( H ) T . Then, we have that
R ( H ) J ( m ( H ) ) R ( H ) T = R ( H ) R ( H ) T J ( H ) R ( H ) R ( H ) T = I m ( H ) J ( H ) I m ( H ) = J ( H ) .
Expression (25) shows J ( m ( T ) ) , the adjacency matrix of m ( T ) . This matrix is obtained from the adjacency matrix J ( T ) by removing the rows and columns which represent the trivial components of the MAG T. In this case, the trivial components are the composite vertices with numerical representations 1 , 6 , 7 , 12 , 13 , and 18. This matrix is calculated as J ( m ( T ) ) = R ( T ) T J ( T ) R ( T ) , so that
J ( m ( T ) ) = 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 1 1 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 1 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 .
In general, the adjacency matrices associated with a MAG are sparse, meaning that for an n × n adjacency matrix the number of non-zero entries of the matrix is of the order O ( n ) . Since the non-zero entries on the MAG adjacency matrix corresponds to the edges present on the MAG, the adjacency matrix being sparse means that the number of edges m on the MAG is of the same order of the number of composite vertices n, i.e., m is of order O ( n ) . Therefore, these matrices can be stored efficiently using sparse matrices representations, such as Compressed Sparse Column (CSC) or Compressed Sparse Row (CSR) [33], because such representations omit all entries of value zero. Assuming that the number of edges is larger than the number of composite vertices, these representations provide a space complexity of O ( m ) for storing the MAG’s adjacency matrices. Further, they also provide efficient matrix operations, which will be explored in the algorithms presented in Section 4.

3.5. Incidence Matrix

Given that every MAG is isomorphic to a directed graph, it follows that it can be represented by an incidence matrix (and its companion tuple). For any given MAG H, this matrix is constructed from the composite vertices g ( H ) and the companion tuple τ ( H ) , adopting the vertex sequence induced by the numerical representation presented in Section 3.2. The MAG’s incidence matrix C ( H ) R m × n , where m = | E ( H ) | is the number of edges in the MAG and n = | V ( H ) | is the number of composite vertices on the MAG, is defined then as
c e , u = 1 if u = π o ( e ) , 1 if u = π d ( e ) , 0 otherwise ,
where e E ( g ( H ) ) is an edge in MAG H and u V ( H ) is a composite vertex in MAG H. Here, the notation c e , u is a shorthand for c I d ( e ) , D ( u , τ ) , where I d ( e ) is an numerical index for each edge and D ( u , τ ) is the numerical representation of the composite vertex u . Note that the use of the composite vertex numerical representation ties the incidence matrix to the MAG’s companion tuple.
Although the sequence of the composite vertices is defined by each composite vertex numerical representation, the sequence used to present the MAG edges in the incidence matrix is not relevant. The incidence matrix of a directed graph has several well-known properties [34], among which, the property that the incidence matrix of a directed graph with k connected components has rank n k , where n is the number of vertices of the graph. This property is useful for defining other matrices based on the incidence matrix.
For a given MAG H, the incidence matrix C ( H ) is built by Algorithm 6, where D ( π o ( e ) , T ) and D ( π d ( e ) , T ) are the numerical representation of the origin and destination composite vertices of edge e E ( H ) , respectively, as defined in Section 3.2, and I d ( e ) is a unique numerical index for the edge e E ( H ) , ranging from 1 to m. Considering that a sparse matrix with all entries 0 can be created in constant time, and that both functions C o m p T u p l e and D (see Algorithms 1 and 3) have time complexity of O ( p ) , we conclude that Algorithm 6 has time complexity of O ( p * | E ( H ) | ) , where p is the number of aspects of MAG H and | E ( H ) | the number of edges.
Algorithm 6: Building C ( H ) from MAG H.
Algorithms 10 00001 i006
Given the incidence matrix C ( H ) of a MAG H, it is possible to obtain the incidence matrix of the main components graph C ( m ( H ) ) using the matrix R ( H ) R n × n r defined in Section 3.4. The incidence matrix of m ( H ) is given by
C ( m ( H ) ) = C ( H ) R ( H ) .
Further, given the incidence matrix of the MAG’s main components graph and the matrix R ( H ) , it is possible to recover the MAG’s incidence matrix, as
C ( m ( H ) ) R ( H ) T = C ( H ) R ( H ) R ( H ) T = C ( H ) I m ( H ) = C ( H ) .
This is only possible because the columns of C ( H ) , which are forced to 0 by the multiplication by I m ( H ) , were already 0 , as the composite vertices represented by them have no edges incident to them.
The incidence matrix C ( T ) of the example MAG T is shown in Expression (29). The vertices (columns) sequence is determined by the vertices numerical representation, while the edge sequence remains unconstrained. The trivial components correspond to columns 1 , 6 , 7 , 12 , 13 , and 18, which have all entries with value 0.
C ( T ) = 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0
The main components incidence matrix C ( m ( T ) ) is depicted in Expression (30). It is obtained from the matrix C ( T ) by removing the trivial components, as shown in Expression (28).
C ( m ( T ) ) = 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 1 0 0 1 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 0 0 0 0 0 0 0 0 1 0 0 0 1 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 1 0 0 1 0
In general, the incidence matrices related to MAGs are sparse, and therefore can be efficiently stored using sparse matrices representations, such as CSC or CSR [33]. Assuming that the number of edges on the MAG is larger than the number of composite vertices, the use of these representation lead to a memory complexity of O ( m ) , where m = | E ( H ) | is the number of edges on the MAG H.

4. MAG Algorithms

The MAG algorithms covered in this section are based on the MAG’s adjacency matrix or on its adjacency list. Since in general we expect the adjacency matrix to be represented using sparse CSR ou CSC formats [33], it follows, due to the structure of the CSR and CSC formats, that the adjacency matrix and adjacency list can be seen as very closely related representations. The algorithms used in MAGs are directly derived from the basic well-known algorithms used with directed graphs [1,5,32,33]. In this section, we discuss algorithms for degree computation, BFS, and DFS in MAGs, since these algorithms are well-known and fairly simple, being thus convenient for the intended didactical purpose of this work. Furthermore, these basic algorithms also constitute building blocks for more sophisticated graph algorithms. In this sense, the purpose of this section is not to propose new algorithms, but to show how known algorithms may be adapted for application in MAGs. We remark that the presented BFS and DFS algorithms follow the same implementation shown in [5].

4.1. Auxiliary Matrices and Vectors

When operating upon a matrix representation, a few auxiliary matrices and vectors are necessary to express the desired operations. We now define these vectors, which are used on the remainder of this section. We denote 0 and 1 the column vectors with all entries equal to 0 and 1, respectively. In all cases, we assume the vectors have the dimension necessary for the operation where they are applied. When necessary to improve readability, we indicate the dimension by a sub-script as in 0 n or 1 n .
Moreover, specially constructed matrices are used to build sub-determined algebraic algorithms for MAGs. These matrices provide reduction/aggregation operations needed for sub-determined algorithms. Although these matrices are specially constructed for the MAG and the sub-determination in question, they have distinct properties and can be constructed by a general algorithm. In fact, the construction of sub-determined algorithms relies on the use of functions to aggregate/reduce results according to the applied sub-determination. In some cases, this function can be as simple as just summing up values obtained in composite vertices, which are reduced to the same sub-determined vertex. However, depending on the algorithm being constructed, this aggregation may need a more elaborate function, which may not be expressed in terms of matrix multiplications.
Given a MAG H and a sub-determination ζ, the sub-determination matrix M ζ ( H ) R n ζ × n is a rectangular matrix, where n = | V ( H ) | is the number of composite vertices of H and n ζ = | V ζ ( H ) | is the number of composite vertices of the sub-determination ζ applied to the MAG H. Since a sub-determination is a (proper) subset of the aspects of a MAG, it follows that n ζ | n , i.e., the number of composite vertices of a MAG is a multiple of the number of composite vertices in any of its sub-determinations. Further, M ζ ( H ) has the property of having exactly one non-zero entry in each column, and the position of this entry is determined by the numerical value of the sub-determined composite vertex.
Algorithm 7 shows the construction of the sub-determination matrix M ζ ( H ) for a given MAG H and sub-determination ζ. The function D takes a composite vertex to its numerical representation and the function S ζ takes a composite vertex to its sub-determined form, i.e., it drops the aspects not present in the sub-determination. To determine the time complexity of Algorithm 7, we consider that the count of composite vertices in line 3 is O ( | V ( H ) | ) , the same is the case for the count on line 4, the construction of companion tuple at line 2 is O ( p ) , the construction of an empty sparse matrix at line 5 is O ( 1 ) , and, finally, the for loop initiated at line 6 is also O ( | V ( H ) | ) . Since the number of aspects p | V ( H ) | , we conclude that the time complexity of Algorithm 7 is O ( | V ( H ) | ) .
Algorithm 7: Construction of M ζ .
Algorithms 10 00001 i007
For instance, consider the example MAG T and a sub-determination ζ t = 011 2 , which drops the third aspect of T. The aspect dropped is the aspect of time instants and, therefore, the two aspects present in ζ t are location and transit layers. Since in T there are 3 locations and 2 transit layers, it follows that | V ζ t ( T ) | = 6 . Hence, M ζ t ( T ) R 6 × 18 constructed according to Algorithm 7 is given by
M ζ t ( T ) = 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 0 1 0 0 0 0 0 1 0 0 0 0 0 1 .
As a further example, consider the MAG T and a sub-determination ζ T = 100 2 , which drops the location and transit layer aspects, leaving only the time instants aspects. Since there are 3 time instants in T, it follows that M ζ T ( T ) R 3 × 18 is
M ζ T ( T ) = 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 .
Note that in these cases the multiplication by the sub-determination matrices performs the sum of the distinct composite vertices that are reduced to a same sub-determined vertex. For instance, given the sub-determination ζ t = 011 2 , the matrix M ζ t ( T ) is used to aggregate values found in 3 composite vertices into a single sub-determined vertex. The aggregation function in this case is a simple sum. The same is done by the matrix M ζ T ( T ) for the sub-determination ζ T = 100 2 , where in this case each sub-determined result is the sum of values obtained for 6 composite vertices.

4.2. Universality of Matrix Algorithms

In this section, we show that every function that can be obtained from a MAG to a given co-domain set can also be obtained from a matrix representation of the MAG. Here the set H is the quotient set of finite MAGs under isomorphism defined in Section 2.1. Note that a permutation σ of a given adjacency matrix J ( H ) , together with the function D σ , represents the same MAG H as J ( H ) , so that permutations of adjacency matrices are isomorphic. Thus, we have the set J , which is a quotient set of pairs ( J σ , D σ ) of adjacency matrices and association functions D, under adjacency matrix permutations. Therefore, an element of J is an equivalence class of adjacency matrices and D functions. Since we consider the pair ( J ( H ) , τ ( H ) ) as the canonical adjacency matrix representation of the MAG H, we assign this pair as the class representative of the MAG H in J .
Theorem 1.
The adjacency matrix J ( H ) and companion tuple τ ( H ) obtained from the MAG H by Algorithm 5 are isomorphic to the MAG H.
Proof. 
We show that Algorithm 5 can be seen as a function that takes a given MAG H to its adjacency matrix and companion tuple, and that this function preserves the adjacency structure of the original MAG. Further, we show that, from the adjacency matrix J ( H ) and companion tuple τ ( H ) , we can construct a MAG H ^ that is isomorphic to MAG H.
  • Given the sets H and J , Algorithm 5 can be seen as a function
    Υ : H J H ( J ( H ) , τ ( H ) ) .
    Considering the loop depicted at lines 5 to 9 in Algorithm 5, it can be seen that every edge e E ( H ) is converted in a pair of composite vertices ( u and v ) and then represented as an edge on the adjacency matrix J ( H ) . Therefore, if the composite vertices u and v are adjacent in MAG H, then a entry 1 is present at the intersection of row D ( u , τ ( H ) ) and column D ( v , τ ( H ) ) of J ( H ) , indicating the corresponding adjacency in the matrix. Hence, the adjacency structure of the MAG H is preserved by the function Υ.
  • Given the adjacency matrix J ( H ) and companion tuple τ ( H ) , we construct MAG H ^ , which we then show to be isomorphic to the MAG H. We obtain A ( H ^ ) from τ ( H ) by constructing a list A ( H ^ ) with p = | τ ( H ) | elements, in which every element i of this list is a set such that | A ( H ^ ) [ i ] | = τ [ i ] . Without loss of generality, we can assume that the elements of each aspect A ( H ^ ) [ i ] are natural numbers ranging from 1 to τ [ i ] . We then construct the edge set E ( H ^ ) , by starting with an empty set and then inserting an edge for each entry with value 1 in J ( H ) . For constructing each of these edges, we take an entry of value 1, make r equal to its row number, and c equal to its column number. We then build the edge e = ( D 1 ( r , τ ( H ) ) , D 1 ( c , τ ( H ) ) , which is a tuple of length 2 p , where the first p entries correspond to the origin composite vertex and the last p entries correspond to the destination composite vertex of the edge. Note that function D 1 simply retrieves the original composite vertex entries from the row and column numbers of the adjacency matrix. Further, we construct the set V ( H ^ ) of composite vertices, which is the cartesian product of the sets in A ( H ^ ) , so that
    V ( H ^ ) = n = 1 p A ( H ^ ) [ n ] ,
    where p = | τ ( H ) | is the number of aspects in the MAG H.
    We now show that the MAG H ^ , constructed from J ( H ) and τ ( H ) , is isomorphic to the original MAG H. Note that by construction of H ^ we have that | E ( H ^ ) | = | E ( H ) | ; | A ( H ^ ) | = | A ( H ) | = p ; for 1 i p , | A ( H ^ ) [ i ] | = | A ( H ) [ i ] | ; | V ( H ^ ) | = | V ( H ) | ; and τ ( H ^ ) = τ ( H ) .
    Since | V ( H ) | = | V ( H ^ ) | , we know that there is a bijective function from V ( H ^ ) to V ( H ) . Further, we also have the bijective function D, which takes a composite vertex into a natural number, assigning a unique and distinct natural number to each element of V ( H ) and V ( H ^ ) . Moreover, since τ ( H ^ ) = τ ( H ) and by construction of D, we have that the range of D for V ( H ) and V ( H ^ ) is the same, i.e., D ( V ( H ) , τ ( H ) ) = D ( V ( H ^ ) , τ ( H ^ ) ) . From this, we conclude that, for every composite vertex u V ( H ) , there is one unique composite vertex u ^ V ( H ^ ) such that D ( u , τ ( H ) ) = D ( u ^ , τ ( H ^ ) ) . We thus define the bijective function
    f : V ( H ^ ) V ( H ) u ^ u , such that D ( u ^ , τ ( H ^ ) ) = D ( u , τ ( H ) ) .
    As the function f is bijective, for every edge e ^ H ^ , we have an edge e = ( f ( π o ( e ^ ) ) , f ( π d ( e ^ ) ) ) E ( H ) , and also, for every edge e E ( H ) , we have the corresponding edge e ^ = ( f 1 ( π o ( e ) ) , f 1 ( π d ( e ) ) ) E ( H ^ ) . This fulfils the conditions for isomorphism between H ^ and H.
    Since H is a quotient set under the MAG isomorphism relation and H ^ is isomorphic to H, it follows that H ^ and H correspond to the same element in H , making the function Υ bijective. Also, since each entry with value 1 in the adjacency matrix J ( H ) corresponds to an edge in the MAG H, it follows that Υ 1 also preserves the MAGs adjacency structure, establishing the isomorphism relation as desired.
Theorem 2.
Every function that can be obtained from a MAG to a given co-domain set can also be obtained from a matrix representation of the MAG.
Proof. 
Consider the diagram depicted in Figure 5. In this figure, H is the set of all MAGs (up to isomorphism), J is the set of pairs of adjacency matrices and companion tuples (up to permutation), F is an arbitrary function from H to X , where X is a codomain consistent with the definition of function F, and I is the identity function in X . Since the function F is arbitrary, it can represent any function or algorithm, such as searches or centrality computations, which take MAGs to a result expected from this function.
As both functions Υ (Equation (33) in Theorem 1) and I represent isomorphisms, it follows that the depicted diagram commutes, so that for every function F : H X there is a function F ^ : J X , which produces the same result. ☐
As a consequence of Theorem 2, it follows that, from the adjacency matrix and companion tuple of a MAG, one can obtain any possible outcome that can be obtained from a MAG or from any other representation equivalent to it, such as high order tensors, as those presented in recent related works [15,35,36]. Therefore, Theorem 2 actually shows that any possible MAG function (algorithm) can be obtained from a matrix-based representation of a MAG. This is an important theoretical result since it paves the way for adapting well-known graph algorithms for application in MAGs. In the next subsections, we show examples of basic algorithms and functions that can be obtained from the matrix-based representation of a MAG.

4.3. Degree

The definition of degree in a traditional graph stems from the number of edges incident to a given vertex. This concept can be generalized for MAGs, so that degrees can be defined for composite vertices, sub-determinations, or elements of a given aspect. Further, since MAG edges are considered to be directed, the degrees are also divided into out-degree and in-degree. In this section, we present algorithms for calculating these distinct degree definitions.

4.3.1. Degree of Composite Vertices

The degree of composite vertices of a given MAG H can be obtained directly from its composite vertices representation, g ( H ) . Since the composite vertices representation is a traditional directed graph isomorphic to the MAG H, it follows that the degree determination is done with the traditional algorithm for directed graphs with minor changes. For a given MAG H and its companion tuple τ ( H ) , the degrees of the composite vertices can be determined by Algorithm 8, where D ( π o ( e ) , τ ( H ) ) and D ( π d ( e ) , τ ( H ) ) stand for the numerical representation of the origin and destination composite vertices of edge e E ( H ) , as defined in Section 3.2.
Algorithm 8: Determination of the degree of composite vertices.
Algorithms 10 00001 i008
Another way for calculating the degrees of the composite vertices is computing it algebraically from the adjacency matrix of the MAG, as given by
i n d e g r e e = J ( H ) T 1 ,
and
o u t d e g r e e = J ( H ) 1 .
Further, the total degree of the composite vertices can be obtained by summing up their indegrees and outdegrees.
To determine the time complexity of Algorithm 8, we consider that lines 2, 4, and 5 have each time complexity O ( | V ( H ) | ) , the determination of the companion tuple at line 3 has complexity O ( p ) , where p is the number of aspects of the MAG, so that p | V ( H ) | . Finally, since the determination of the numerical representation of vertices has complexity O ( p ) , we have that the for loop initiated at line 6 has complexity O ( p * | E ( H ) | ) , so that the time complexity of Algorithm 8 is O ( | V ( H ) | + p * | E ( H ) | ) . If we consider that in a given case the order of the MAG does not vary, so that p is a constant, then the algorithm’s time complexity is O ( | V ( H ) | + | E ( H ) | ) .
In the case of the example MAG T (Figure 3), whose companion tuple is τ = ( 3 , 2 , 3 ) , it can be seen that the composite vertex ( 2 , B u s , t 1 ) has outdegree 3 and indegree 1, while the composite vertex ( 1 , S u b w a y , t 2 ) has outdegree 2 and indegree 2. Since D ( ( 2 , B u s , t 1 ) , τ ) = 2 and D ( ( 1 , S u b w a y , t 2 ) , τ ) = 10 , it follows that i n d e g r e e [ 2 ] = 1 , o u t d e g r e e [ 2 ] = 3 , i n d e g r e e [ 10 ] = 2 and o u t d e g r e e [ 10 ] = 2 .

4.3.2. Degree of Sub-Determined Vertices

We can determine the degree for sub-determined composite vertices in a similar way to the degree of composite vertices. Given a MAG H and a sub-determination ζ, the degree of the sub-determined composite vertices can be obtained by Algorithm 9, where | V ζ ( H ) | is the number of ζ sub-determined composite vertices on MAG H, S ζ is the function that takes a composite vertex to its sub-determined form, and D ζ is the function that takes the sub-determined composite vertex to its numerical representation. It can be seen that the time complexity of Algorithm 9 is the same as the time complexity of Algorithm 8.
Algorithm 9: Sub-determined degree.
Algorithms 10 00001 i009
It is important to note that two distinct composite vertices may have the same sub-determined form. This happens when the two composite vertices differ only on aspects which are dropped by the sub-determination. In this case, the degree of each of these composite vertices is summed for obtain the sub-determined degree. From this, it can also be seen that some edges in the sub-determined form may become self-loops. The degrees calculated by Algorithm 9 include the self-loop edges. This algorithm can be modified to count the self-loops separately, as shown in Algorithm 10. This algorithm is similar to Algorithm 8 and has the same time complexity.
The sub-determined composite vertices degree can also be determined algebraically with
i n d e g r e e = M ζ ( H ) J ( H ) T 1 ,
and
o u t d e g r e e = M ζ ( H ) J ( H ) 1 ,
where M ζ ( H ) is the sub-determination matrix and 1 is the all 1s column vector, both defined in Section 4.1. Note that the multiplication by M ζ ( H ) adds the degrees of the composite vertices that are collapsed to the same sub-determined vertex.
Algorithm 10: Sub-determined degree, separating self-loops
Algorithms 10 00001 i010
The degrees calculated by Equations (38) and (39) include the self-loop edges. To obtain the separate self-loop degrees, first note that
M ζ ( H ) J ( H ) 1 n = M ζ ( H ) J ( H ) M ζ ( H ) T 1 m .
This follows from the fact that
M ζ ( H ) T 1 m = 1 n ,
since M ζ ( H ) T is a n × m rectangular matrix and has the property that each row has exactly one non-zero entry of value 1.
Furthermore, note that the matrix M ζ ( H ) J ( H ) M ζ ( H ) T is the adjacency matrix of the sub-determined MAG H ζ . Since the composite vertices representation of a sub-determined MAG is a multigraph, each non-zero entry shows the number of superposed edges in the sub-determination. Therefore, the main diagonal of M ζ ( H ) J ( H ) M ζ ( H ) T has the self-loop degree of each vertex. Hence,
s e l f d e g r e e = D i a g ( M ζ ( H ) J ( H ) M ζ ( H ) T ) .
For example, consider the example MAG T (Figure 3) and the sub-determination ζ t = 011 2 defined in Section 4.1. We have that
i n d e g r e e = M ζ t ( T ) J ( T ) T 1 = 0 7 4 4 7 0 ,
o u t d e g r e e = M ζ t ( T ) J ( T ) 1 = 0 7 4 4 7 0 ,
M ζ t ( T ) J ( T ) M ζ t ( T ) T = 0 0 0 0 0 0 0 2 2 0 3 0 0 2 2 0 0 0 0 0 0 2 2 0 0 3 0 2 2 0 0 0 0 0 0 0 ,
and
s e l f d e g r e e = D i a g ( M ζ t ( T ) J ( T ) M ζ t ( T ) T ) = 0 2 2 2 2 0 .
This means that, for instance, the sub-determined composite vertex ( 2 , S u b w a y ) has outdegree 7, indegree 7, and 2 self-loops. This sub-determination corresponds to the aggregation of all 3 time instants, which means that the edges in which only the time instant changes become self-loops. These edges are shown in red (dotted) in Figure 3. Note that τ ζ t = ( 2 , 3 ) , so that D ( ( 2 , S u b w a y ) , ( 2 , 3 ) ) = 2 , making it correspond to the second element of the degree column vector.

4.3.3. Single Aspect Degree

The single aspect degree is a particular case of sub-determined degree in which the sub-determination applied is such that only a single aspect remains. Therefore, the determination of single aspect degrees is done in the same way presented in Section 4.3.2.
We, however, present an additional example illustrating the time instant degree, which is obtained by the sub-determination ζ T = 100 2 defined in Section 4.1. This sub-determination has only the third aspect of the MAG T (Figure 3), which corresponds to the three time instants present on MAG T. In this case, we have that
i n d e g r e e = M ζ T ( T ) J ( T ) T 1 = 2 10 10 ,
o u t d e g r e e = M ζ T ( T ) J ( T ) 1 = 10 10 2 ,
M ζ T ( T ) J ( T ) M ζ T ( T ) T = 2 8 0 0 2 8 0 0 2 ,
and
s e l f d e g r e e = D i a g ( M ζ T ( T ) J ( T ) M ζ T ( T ) T ) = 2 2 2 .
Therefore, we have that τ ζ T = ( 3 ) , so that D ( ( t 1 ) , ( 3 ) ) = 1 , D ( ( t 2 ) , ( 3 ) ) = 2 , and D ( ( t 3 ) , ( 3 ) ) = 3 . Considering the composite vertices representation of MAG T, depicted in Figure 3, it can be seen that each time instant has 2 self-loop edges (in blue-dashed), which is consistent with Equation (50). Further, there are 8 edges from t 1 to t 2 (in red-dotted and black) and 8 edges from t 2 to t 3 . This is consistent with the adjacency matrix shown in Equation (49). Further, the indegrees and outdegrees of each time instant are consistent with Equations (47) and (48).

4.4. Breadth-First Search (BFS)

The Breadth-First Search (BFS) is an important graph algorithm that can be seen as a primitive for building many other algorithms [5]. The goal of this section is to illustrate how the BFS algorithm can be adapted for being used in MAGs, both in its full composite vertices representation and in its sub-determined forms. In the not sub-determined form, the adaptation is very simple, since the composite vertices representation of a MAG is a directed graph. In this case, all that is needed is to convert the composite vertices representation from its tuple to numerical form, and then apply the traditional BFS algorithm. The adaptation to the sub-determined forms also does not require major changes on the algorithm. As with many graph algorithms, BFS can be expressed in combinational or in algebraic forms, which are presented in the following related subsections.

4.4.1. BFS for Composite Vertices

The non sub-determined BFS in its combinational form is constructed directly upon the MAG’s adjacency matrix, J ( H ) .
Algorithm 11: BFS for composite vertices.
Algorithms 10 00001 i011
Considering Algorithm 11 and the standard form of the BFS algorithm encountered in [5], it can be seen that the difference is that the starting composite vertex s has to be transformed from its tuple representation to its numerical representation, as shown in lines 8, 9, and 10 of Algorithm 11. Therefore, from the analysis provided in [5], we can conclude that the time complexity of Algorithm 11 is O ( | V ( H ) | + | E ( H ) | ) .
BFS is also closely related to matrix multiplication. This stems from the well-known property of the powers of the adjacency matrix, in which the ( i , j ) entry of the n-th power of the adjacency matrix shows the number of existing walks of length n from vertex i to vertex j [33]. From this, we could think that for a given MAG H, the series
B = i = 0 J ( H ) i = I + J ( H ) + J ( H ) 2 + J ( H ) 3 + J ( H ) 4 +
would produce a matrix B , such that the entry B i , j indicates the number of walks of any length from vertex i to vertex j. This is indeed the case when H happens to be an acyclic MAG, making J ( H ) a nilpotent matrix.
The existence of cycles in H makes that, for some vertices, there will exist walks of arbitrary length connecting them (namely, the cycles), making the series of Equation (51) divergent. However, since the objective is not to know the number of walks between each pair of vertices, but simply to know which vertices are reachable from each other (i.e., there is at least a path between them), this technical problem can be solved by multiplying the adjacency matrix J ( H ) by a scalar ρ H , such that
ρ H < 1 ρ ( J ( H ) ) ,
where ρ ( J ( H ) ) is the spectral radius of the matrix J ( H ) . This leads to the matrix
J ρ ( H ) = ρ H J ( H ) ,
so that the spectral radius of the matrix J ρ ( H ) < 1 . This results that Equation (51) constructed with the matrix J ρ ( H ) converges. Since the convergence of the series is assured, Equation (51) can be re-expressed as
B = ( I J ρ ( H ) ) 1 .
The matrix B defined in Equation (54) has the property that, for any given composite vertex v V ( H ) , the row D ( v ) of B has non-zero entries in every column that corresponds to a composite vertex u V ( H ) , such that u is reachable from v . Hence, for a given composite vertex v , the row D ( v ) corresponds to the result of a BFS started at that composite vertex. Although the matrix B carries the BFS of all composite vertices of the MAG H, it is important to note that this matrix may not be sparse, which for large MAGs can lead to difficulties in memory allocation. To avoid such difficulties, it is also possible to express a BFS for a single composite vertex v as
B = r v I + r v J ρ ( H ) + r v J ρ ( H ) 2 + r v J ρ ( H ) 3 + r v J ρ ( H ) 4 + ,
where r v is the row vector with n entries for which all entries except D ( v , τ ) are 0 and the entry D ( v , τ ) is 1.
Considering the example MAG T, shown in Figure 3, the result of the BFS using Algorithm 11 for the composite vertex ( 2 , B u s , t 1 ) , whose numerical representation is D ( ( 2 , B u s , t 1 ) , ( 3 , 2 , 3 ) ) = 2 , is
v e r t i c e s = [ 2 , 5 , 8 , 9 , 10 , 11 , 14 , 15 , 16 , 17 ] d i s t a n c e s = [ , 0 , , , 1 , , , 1 , 1 , 2 , 2 , , , 2 , 2 , 3 , 3 , ] p r e d = [ N i l , N i l , N i l , N i l , 2 , N i l , N i l , 2 , 2 , 5 , 5 , N i l , N i l , 8 , 8 , 10 , 10 , N i l ] ,
where the list v e r t i c e s shows the composite vertices accessible from ( 2 , B u s , t 1 ) , which in this example represent all locations, transit modals, and time instants reachable from this initial point. The list d i s t a n c e s carries the distances in hops from the initial composite vertex ( 2 , B u s , t 1 ) to all possible destinations (with meaning that a destination is not reachable). The list p r e d shows the predecessors of each composite vertex, making possible to construct a BFS tree.

4.4.2. Sub-Determined BFS

It is possible to obtain a sub-determined form of the BFS algorithm for MAGs. It is important, however, to realize that this sub-determined BFS algorithm is not equivalent to applying the BFS algorithms presented in Section 4.4.1 to a sub-determined MAG. A sub-determination is a generalization of the idea of aggregating multilayer and time-varying graphs, as shown in Section 2.2. As with the aggregation process, the sub-determination of a MAG can cause the presence of paths and walks on the sub-determined MAG that do not actually exist on the original MAG. To illustrate this, we present Figure 6a,b, which show a small two aspects MAG and its sub-determined form, obtained by the sub-determination ζ R = 01 2 . First, note that, in the MAG R shown in Figure 6a, there is no path originating from the composite vertices ( 1 , 1 ) or ( 1 , 2 ) to the composite vertices ( 3 , 1 ) or ( 3 , 2 ) . Nevertheless, in Figure 6b, there is a path connecting the sub-determined vertex ( 1 ) to the sub-determined vertex ( 3 ) , even though such connection is not possible on the original MAG shown in Figure 6a. Therefore, to obtain the proper result, the sub-determined BFS should not be evaluated directly using the sub-determined MAG.
Such a case can be seen algebraically by noting that given a MAG H and a sub-determination ζ, in general
M ζ ( H ) i = 0 J ρ ( H ) i M ζ ( H ) T i = 0 M ζ ( H ) J ρ ( H ) M ζ ( H ) T i .
To see that the Inequality (57) holds, note that an arbitrary power of the matrix M ζ ( H ) J ρ ( H ) M ζ ( H ) T is given by
M ζ ( H ) J ρ ( H ) M ζ ( H ) T n = M ζ ( H ) J ρ ( H ) M ζ ( H ) T M ζ ( H ) J ρ ( H ) M ζ ( H ) T n   times ,
where M ζ ( H ) J ρ ( H ) M ζ ( H ) T is multiplied n times. Note, however, that
M ζ ( H ) T M ζ ( H ) I n ,
since M ζ ( H ) R m × n is a retangular matrix and m < n , so that the rank of the matrix M ζ ( H ) T M ζ ( H ) is less or equal to m, while the rank of the identity I n is n > m . Since Inequality (59) holds, so does the Inequality (57).
Here, the left hand side of the Inequality (57) corresponds to the sub-determination of the BFS calculated for the MAG H, while the right hand side corresponds to the BFS calculated for the sub-determined MAG H ζ .
In the case of the MAG R, shown in Figure 6a, we have that the sub-determination is given by ζ R = 01 2 and the adjacency and sub-determination matrices are
J ( R ) = 0 0 0 1 0 0 0 0 1 0 1 0 0 0 0 0 0 1 0 0 0 0 1 0 0 0 0 0 0 0 0 0 0 0 0 0 ,
M ζ R ( R ) = 1 0 0 1 0 0 0 1 0 0 1 0 0 0 1 0 0 1 ,
and
J ζ R ( R ) = 0 1 0 0 0 1 0 0 0 .
Therefore, we have that
M ζ R ( R ) i = 0 J ρ ( R ) i M ζ R ( R ) T = 3 2 0 0 3 2 0 0 3 ,
while
i = 0 M ζ R ( R ) J ρ ( R ) M ζ R ( R ) T i = 2 2 2 0 2 2 0 0 2
and
I 3 J ζ R ( R ) 1 = 1 1 1 0 1 1 0 0 1 .
Remembering that the entries of the matrices in Equations (63)–(65) are to be considered only as zero or non-zero, it can be seen that the matrix at Equation (63) has a 0 at entry ( 1 , 3 ) , while the matrices at Equations (64) and (65) have a non-zero entry at this same position. This illustrates the situation in which a BFS is done on the sub-determined (aggregated) MAG, as in Equations (64) and (65), i.e., paths that are not present on the original MAG can appear on the sub-determined form, potentially altering the results obtained by algorithms applied to it.
For instance, considering the MAG T, depicted in Figure 3, for a sub-determination ζ t = 011 2 , which drops the time aspect, and considering ρ H = 0 . 5 so that J ρ ( T ) = 0 . 5 J ( T ) , we have that
M ζ t ( T ) i = 0 J ρ ( T ) i M ζ t ( T ) T = 3 0 0 0 0 0 0 7 . 8 2 . 2 1 . 3 5 . 2 0 0 2 . 2 4 . 6 0 . 2 1 . 3 0 0 1 . 3 0 . 2 4 . 6 2 . 2 0 0 5 . 2 1 . 3 2 . 2 7 . 8 0 0 0 0 0 0 3 .
Algorithm 12 shows a combinational version of the sub-determined BFS. This procedure ensures that only paths present on the original MAG are considered on the sub-determined BFS. The sub-determination of the results obtained from the BFS is done in the internal if, comprising lines 21 to 25 of Algorithm 12.
Algorithm 12: Sub-determined BFS.
Algorithms 10 00001 i012
After applying Algorithm 12 to the MAG R with initial vertex s = 1 and sub-detemination ζ R = 01 2 , the obtained result is
v e r t i c e s = [ 1 , 2 ] d i s t a n c e s = [ 0 , 1 , ] p r e d = [ N i l , 1 , N i l ] ,
which is consistent with the result obtained by Equation (63).
Further, applying Algorithm 12 to MAG T, shown in Figure 3, with starting composite vertex s = ( 2 , B u s ) and applying the sub-determination ζ t = 011 2 , which drops the time aspect, the obtained result is
v e r t i c e s = [ 2 , 5 , 3 , 4 ] d i s t a n c e s = [ , 0 , 1 , 2 , 1 , ] p r e d = [ N i l , N i l , 2 , 5 , 2 , N i l ] .
Considering that τ ζ t = ( 3 , 2 ) and 2 = D ( ( 2 , B u s ) , ( 3 , 2 ) ) , 5 = D ( ( 2 , S u b w a y ) , ( 3 , 2 ) ) , 3 = D ( ( 3 , B u s ) , ( 3 , 2 ) ) , and 1 = D ( ( 1 , S u b w a y ) , ( 3 , 2 ) ) , this means that disregarding time, starting from ( 2 , B u s ) it is possible to reach ( 2 , S u b w a y ) in 1 step, ( 1 , S u b w a y ) in 2 steps, and ( 3 , B u s ) in 1 step. It is not possible to reach ( 1 , B u s ) because there is no bus stop at location 1, neither ( 3 , S u b w a y ) because there is no subway station at location 3. From the predecessor list ( p r e d ) it is possible to build a BFS tree, where ( 2 , B u s ) is the root, ( 2 , S u b w a y ) and ( 3 , B u s ) are children of ( 2 , B u s ) , and ( 1 , S u b w a y ) is a child of ( 2 , S u b w a y ) . Note that ( 1 , S u b w a y ) and ( 3 , B u s ) are leaves. It can be seen that the result obtained in Equation (66) is consistent with the results obtained by Algorithm 12. Comparing Algorithm 12 to Algorithm 11, it can be seen that the main difference is the additional for loop at line 12 of Algorithm 12. Since the time complexity of this loop is O ( | V ( H ) | ) , we then conclude that the time complexity of Algorithm 12 is O ( | V ( H ) | + | E ( H ) | ) .

4.5. Depth-First Search (DFS)

In this section, we show the adaptation of the Depth-First Search (DFS) algorithm for use with MAGs. The DFS algorithm exposes many properties of the MAG structure and can be used as a primitive for the construction of many other algorithms [5]. We present DFS algorithms for both the full composite vertices representation of the MAG as well as for the sub-determined form. We remark that in the sub-determined algorithm the full information of the MAG is used, in the sense of preventing the use of paths that may exist in the sub-determined form of the MAG, while not actually existing in the original MAG.

4.5.1. DFS for Composite Vertices

The composite vertices implementation is constructed using the MAG’s adjacency matrix J ( H ) and companion tuple τ ( H ) . The implementation shown is very similar to the traditional implementation presented in [5], which is expected since the composite vertices representation of the MAG is indeed a directed graph, so that the original algorithm applies.
The proposed implementation can be seen in Algorithm 13 is similar to the original implementation. Therefore, considering the analysis provided in [5], we conclude that the time complexity of Algorithm 13 is O ( | V ( H ) | + | E ( H ) | ) .
When applied to MAG T, shown in Figure 3, the DFS algorithm generates the result
d = [ 0 , 2 , 22 , 24 , 3 , 26 , 28 , 13 , 19 , 4 , 12 , 30 , 32 , 8 , 14 , 5 , 7 , 34 ] f = [ 1 , 21 , 23 , 25 , 18 , 27 , 29 , 16 , 20 , 11 , 17 , 31 , 33 , 9 , 15 , 6 , 10 , 35 ] p r e d = [ N i l , N i l , N i l , N i l , 2 , N i l , N i l , 11 , 2 , 5 , 5 , N i l , N i l , 17 , 8 , 10 , 10 , N i l ] ,
where the list d carries the discovery time of each composite vertex, the list f the respective finish time of each composite vertex, and p r e d the predecessor list of each composite vertex.

4.5.2. Sub-Determined DFS

The sub-determined DFS algorithm is presented in Algorithm 14 and is similar to the non sub-determined one. The main differences are at the Procedure Visit-DFS-Sub and the call to a sub-determined BFS at line 15 of the DFS-Sub function. This version for a sub-determined BFS is considered to determine the reachability of sub-determined vertices from the root of each sub-determined DFS tree. This is necessary to prevent including vertices not reachable from the tree root in the non sub-determined MAG into the DFS trees constructed by Procedure Visit-DFS-Sub. An example of this is provided in Equation (71). The difference in Procedure Visit-DFS-Sub is that in addition to the root vertex for the DFS tree it also receives the reachability vector produced by the BFS. This reachability vector has one entry for each sub-determined vertex. This entry has value 1 when corresponding to a reachable vertex, while entries corresponding to unreachable vertices carry value 0.
Algorithm 13: DFS for composite vertices.
Algorithms 10 00001 i013
To determine the time complexity of Algorithm 14, we consider that the sub-determined BFS executed at line 15 of Function DFS-Sub is done once for the root vertex of each sub-determined DFS tree. Since it is executed only once for each DFS tree, we conclude that the total time expended in the sub-determined BFS algorithm is O ( | V ( H ) | + | E ( H ) | ) . Since the reachability check included in Function Visit-DFS-Sub is done by verifying the content of one entry of the reachability vector, it is done in O ( 1 ) and therefore does not affect the overall time complexity of the Visit-DFS-Sub Function. Therefore, since the DFS is run upon the sub-determined MAG, it follows that the time complexity of doing the DFS part of the Algorithm is O ( | V ζ ( H ) | + | E ζ ( H ) | ) . Since | V ζ ( H ) | < | V ( H ) | and | E ζ ( H ) | < | E ( H ) | , we conclude that the time complexity is dominated by the BFS used for the reachability determination, making the overall time complexity of Algorithm 14 to be O ( | V ( H ) | + | E ( H ) | ) .
Algorithm 14: Sub-determined DFS.
Algorithms 10 00001 i014
When applying the sub-determined DFS algorithm to the example MAG T shown in Figure 3 with a sub-determination ζ t = 011 2 , which drops the time aspect, the obtained result is
d = [ 0 , 2 , 3 , 6 , 5 , 10 ] f = [ 1 , 9 , 4 , 7 , 8 , 11 ] p r e d = [ N i l , N i l , 2 , 5 , 2 , N i l ] ,
where the list d carries the discovery time of each sub-determined composite vertex, the list f its finish time and p r e d its predecessor.
Considering the MAG R shown in Figure 6a with a sub-determination ζ R = 01 2 , the result obtained by Algorithm 14 is
d = [ 0 , 1 , 4 ] f = [ 3 , 2 , 5 ] p r e d = [ N i l , 1 , N i l ] .
It can be seen that even though in the MAG R sub-determined by ζ R = 01 2 (see Figure 6b) there is a path from vertex 1 to 3, vertex 3 is not in the same DFS tree as vertices 1 and 2, even with the DFS starting at vertex 1, as can be seen in d [ 0 ] . This occurs because in MAG R (with no sub-determination) there is no path connecting the composite vertex 1 to the composite vertex 3.

5. Final Remarks

In this paper, we have presented the algebraic representation and basic algorithms of MultiAspect Graphs (MAGs). The key contribution has been to show that models based on the MAG abstraction (formally defined in [18]) can be represented by a matrix and a companion tuple. Furthermore, we have also shown that any possible MAG function (algorithm) can be obtained from this matrix-based representation. We have chosen to present the algebraic representation in matrix form since it is well accepted and known, thus contributing to the readability of the paper. Nevertheless, given the isomorphism property of MAGs, any representation form available for directed graphs can also be used for MAGs, including matrices as used here for convenience or sorted adjacency lists, for instance, that are a common representation of graphs in existing network analysis packages. This is an important theoretical result because it paves the way for adapting well-known graph algorithms for application in MAGs. In this sense, we have presented the adaptation for the MAG context of basic graph algorithms, such as computing degree, BFS, and DFS. These basic graph algorithms adapted to the MAG context can be used as primitives for building other more sophisticated MAG algorithms. Therefore, such examples can be seen as guidelines on how to properly derive MAG algorithms from basic algorithms on directed graphs. In particular, we have also presented the sub-determined versions of the same basic algorithms, showing that such versions disregard spurious paths that usually result from the sub-determination process, thus avoiding the pollution of the results with the consideration of such paths.
The discussed basic algorithms can be used as building blocks for other purposes, thus allowing the extension of the MAG applicability. Concerning algorithm complexity, given the isomorphism between a MAG and a traditional directed graph, we expect MAG algorithms to have the same complexity as the equivalent algorithms for traditional directed graphs. For instance, if the MAG algorithm is derived from a given traditional algorithm that is polynomial for traditional graphs, the resulting algorithm for MAGs will be polynomial in the size of the composite vertices representation of the MAG.
As future work, we intend to build upon the results here obtained for the algebraic representation and basic algorithms of MAGs to analyze MAG properties, such as the centrality of edges, composite vertices, and aspects. We also intend to consider the dynamics encountered in these properties in the cases where one of the MAG aspects represents time. Finally, we are also targeting the application of the MAG concept for the better understanding, modeling, and analysis of different real-world applications represented by high order complex networked systems.

Acknowledgments

This work was partially funded by the Brazilian funding agencies CAPES (STIC-AmSud Program), CNPq, FINEP, and FAPERJ as well as the Brazilian Ministry of Science, Technology, Innovations, and Communications (MCTIC).

Author Contributions

The problem definition, theoretical analysis, and algorithm design were performed jointly by all authors; Klaus Wehmuth derived the theorems and implemented the algorithms depicted in the paper. All authors read and approved the final manuscript.

Conflicts of Interest

The authors declare no conflict of interest.

References

  1. Distel, R. Graph Theory, 4th ed.; Springer: Berlin/Heidelberg, Germany, 2010. [Google Scholar]
  2. Jansson, J. Special Issue on Graph Algorithms. Algorithms 2013, 6, 457–458. [Google Scholar] [CrossRef]
  3. Deo, N. Graph Theory with Applications to Engineering and Computer Science, 1st ed.; Dover Publications: Mineola, NY, USA, 2016. [Google Scholar]
  4. Tarjan, R. Depth-First Search and Linear Graph Algorithms. SIAM J. Comput. 1972, 1, 146–160. [Google Scholar] [CrossRef]
  5. Cormen, T.H.; Stein, C.; Rivest, R.L.; Leiserson, C.E. Introduction to Algorithms, 3rd ed.; MIT Press: Cambridge, MA, USA, 2009. [Google Scholar]
  6. Friedkin, N.E. Theoretical foundations for centrality measures. Am. J. Sociol. 1991, 96, 1478–1504. [Google Scholar] [CrossRef]
  7. Wehmuth, K.; Ziviani, A. Distributed location of the critical nodes to network robustness based on spectral analysis. In Proceedings of the IEEE Latin American Network Operations and Management Symposium (LANOMS), João Pessoa, Brazil, 1–3 October 2011; pp. 1–8.
  8. Takes, F.W.; Kosters, W.A. Computing the Eccentricity Distribution of Large Graphs. Algorithms 2013, 6, 100–118. [Google Scholar] [CrossRef]
  9. Wehmuth, K.; Ziviani, A. DACCER: Distributed Assessment of the Closeness CEntrality Ranking in complex networks. Comput. Netw. 2013, 57, 2536–2548. [Google Scholar] [CrossRef]
  10. Watts, D.; Strogatz, S.H. Collective dynamics of small-world networks. Nature 1998, 393, 440–442. [Google Scholar] [CrossRef] [PubMed]
  11. Barabási, A.L.; Albert, R. Emergence of Scaling in Random Networks. Science 1999, 286, 509–512. [Google Scholar] [PubMed]
  12. Pastor-Satorras, R.; Vespignani, A. Epidemic Spreading in Scale-Free Networks. Phys. Rev. Lett. 2001, 86, 3200–3203. [Google Scholar] [CrossRef] [PubMed]
  13. Guimarães, A.; Vieira, A.B.; da Silva, A.P.C.; Ziviani, A. Fast Centrality-driven Diffusion in Dynamic Networks. In Proceedings of the 5th Annual Workshop on Simplifying Complex Networks for Practitioners, Rio de Janeiro, Brazil, 13–17 May 2013; pp. 821–828.
  14. Kurant, M.; Thiran, P. Layered Complex Networks. Phys. Rev. Lett. 2006, 96. [Google Scholar] [CrossRef] [PubMed]
  15. Kivelä, M.; Arenas, A.; Barthelemy, M.; Gleeson, J.P.; Moreno, Y.; Porter, M.A. Multilayer networks. J. Complex Netw. 2014, 2, 203–271. [Google Scholar] [CrossRef]
  16. Leskovec, J.; Kleinberg, J.; Faloutsos, C. Graphs over Time: Densification Laws, Shrinking Diameters and Possible Explanations. In Proceedings of the 22nd SIGKDD Conference on Knowledge Discovery and Data Mining, San Francisco, CA, USA, 13–17 August 2016; pp. 177–187.
  17. Holme, P.; Saramäki, J. Temporal networks. Phys. Rep. 2012, 519, 97–125. [Google Scholar] [CrossRef]
  18. Wehmuth, K.; Fleury, E.; Ziviani, A. On MultiAspect graphs. Theor. Comput. Sci. 2016, 651, 50–61. [Google Scholar] [CrossRef]
  19. Scholtes, I.; Wider, N.; Garas, A. Higher-order aggregate networks in the analysis of temporal networks: Path structures and centralities. Eur. Phys. J. B 2016, 89, 1–15. [Google Scholar] [CrossRef]
  20. Benson, A.R.; Gleich, D.F.; Leskovec, J. Higher-order organization of complex networks. Science 2016, 353, 163–166. [Google Scholar] [CrossRef] [PubMed]
  21. Lucet, J.C.; Laouenan, C.; Chelius, G.; Veziris, N.; Lepelletier, D.; Friggeri, A.; Abiteboul, D.; Bouvet, E.; Mentre, F.; Fleury, E. Electronic Sensors for Assessing Interactions between Healthcare Workers and Patients under Airborne Precautions. PLoS ONE 2012, 7. [Google Scholar] [CrossRef] [PubMed]
  22. Xavier, F.H.Z.; Silveira, L.M.; Almeida, J.M.; Ziviani, A.; Malab, C.H.S.; Marques-Neto, H.T. Analyzing the Workload Dynamics of a Mobile Phone Network in Large Scale Events. In Proceedings of the First Workshop on Urban Networking (UrbaNe), Nice, France, 10–13 December 2012; pp. 37–42.
  23. Blondel, V.D.; Decuyper, A.; Krings, G. A survey of results on mobile phone datasets analysis. EPJ Data Sci. 2015, 4, 1–55. [Google Scholar] [CrossRef]
  24. Karlebach, G.; Shamir, R. Modelling and analysis of gene regulatory networks. Nat. Rev. Mol. Cell Biol. 2008, 9, 770–780. [Google Scholar] [CrossRef] [PubMed]
  25. Yang, H.; Bell, M.G.; Meng, Q. Modeling the capacity and level of service of urban transportation networks. Transp. Res. Part B Methodol. 2000, 34, 255–275. [Google Scholar] [CrossRef]
  26. Bullmore, E.; Sporns, O. Complex brain networks: graph theoretical analysis of structural and functional systems. Nat. Rev. Neurosci. 2009, 10, 186–198. [Google Scholar] [CrossRef] [PubMed]
  27. De Domenico, M.; Sasai, S.; Arenas, A. Mapping Multiplex Hubs in Human Functional Brain Networks. Front. Neurosci. 2016, 10. [Google Scholar] [CrossRef] [PubMed]
  28. Szell, M.; Lambiotte, R.; Thurner, S. Multirelational organization of large-scale social networks in an online world. Proc. Natl. Acad. Sci. USA 2010, 107, 13636–13641. [Google Scholar] [CrossRef] [PubMed]
  29. Wehmuth, K.; Ziviani, A.; Fleury, E. A unifying model for representing time-varying graphs. In Proceedings of the IEEE International Conference on Data Science and Advanced Analytics (DSAA), Paris, France, 19–21 October 2015; pp. 1–10.
  30. Costa, E.C.; Vieira, A.B.; Wehmuth, K.; Ziviani, A.; da Silva, A.P.C. Time Centrality in Dynamic Complex Networks. Adv. Complex Syst. 2015, 18. [Google Scholar] [CrossRef]
  31. Sarraute, C.; Brea, J.; Burroni, J.; Wehmuth, K.; Ziviani, A.; Alvarez-Hamelin, J.I. Social Events in a Time-Varying Mobile Phone Graph. In Proceedings of the International Conference on the Scientific Analysis of Mobile Phone Datasets (NetMob), Cambridge, MA, USA, 8–10 April 2015.
  32. Bang-Jensen, J.; Gutin, G.Z. Digraphs: Theory, Algorithms and Applications, 2nd ed.; Springer: London, UK, 2009. [Google Scholar]
  33. Kepner, J.; Gilbert, J. Graph Algorithms in the Language of Linear Algebra; SIAM: Philadelphia, PA, USA, 2011. [Google Scholar]
  34. Bapat, R.B. Graphs and Matrices, 2nd ed.; Springer: London, UK, 2014. [Google Scholar]
  35. De Domenico, M.; Solé-Ribalta, A.; Cozzo, E.; Kivelä, M.; Moreno, Y.; Porter, M.; Gómez, S.; Arenas, A. Mathematical Formulation of Multilayer Networks. Phys. Rev. X 2013, 3. [Google Scholar] [CrossRef]
  36. Domenico, M.D.; Granell, C.; Porter, M.A.; Arenas, A. The physics of spreading processes in multilayer networks. Nat. Phys. 2016, 12, 901–906. [Google Scholar] [CrossRef]
Figure 1. Illustrative example of three MultiAspect Graphs (MAG) edges.
Figure 1. Illustrative example of three MultiAspect Graphs (MAG) edges.
Algorithms 10 00001 g001
Figure 2. Illustrative MAG T of a hypothetical simple urban transit system.
Figure 2. Illustrative MAG T of a hypothetical simple urban transit system.
Algorithms 10 00001 g002
Figure 3. MAG T with composite vertices numerical representations.
Figure 3. MAG T with composite vertices numerical representations.
Algorithms 10 00001 g003
Figure 4. m ( T ) of the example MAG T.
Figure 4. m ( T ) of the example MAG T.
Algorithms 10 00001 g004
Figure 5. Commutative diagram.
Figure 5. Commutative diagram.
Algorithms 10 00001 g005
Figure 6. MAG R and its sub-determined form.
Figure 6. MAG R and its sub-determined form.
Algorithms 10 00001 g006

Share and Cite

MDPI and ACS Style

Wehmuth, K.; Fleury, É.; Ziviani, A. MultiAspect Graphs: Algebraic Representation and Algorithms. Algorithms 2017, 10, 1. https://doi.org/10.3390/a10010001

AMA Style

Wehmuth K, Fleury É, Ziviani A. MultiAspect Graphs: Algebraic Representation and Algorithms. Algorithms. 2017; 10(1):1. https://doi.org/10.3390/a10010001

Chicago/Turabian Style

Wehmuth, Klaus, Éric Fleury, and Artur Ziviani. 2017. "MultiAspect Graphs: Algebraic Representation and Algorithms" Algorithms 10, no. 1: 1. https://doi.org/10.3390/a10010001

Note that from the first issue of 2016, this journal uses article numbers instead of page numbers. See further details here.

Article Metrics

Back to TopTop