Graph Partitioning with Fujitsu Digital Annealer


Abstract

Graph partitioning, or community detection, is the cornerstone of many fields, such as logistics, transportation and smart power grids. Efficient computation and efficacious evaluation of communities are both essential, especially in commercial and industrial settings. However, the solution space of graph partitioning increases drastically with the number of vertices and subgroups. With an eye to solving large scale graph partitioning and other optimization problems within a short period of time, the Digital Annealer (DA), a specialized CMOS hardware also featuring improved algorithms, has been devised by Fujitsu Ltd. This study gauges Fujitsu DA’s performance and running times. The modularity was implemented as both the objective function and metric for the solutions. The graph partitioning problems were formatted into Quadratic Unconstrained Binary Optimization (QUBO) structures so that they could be adequately imported into the DA. The DA yielded the highest modularity among other studies when partitioning Karate Club, Les Miserables, American Football, and Dolphin. Moreover, the DA was able to partition the Case 1354pegase power grid network into 45 subgroups, calling for 60,930 binary variables, whilst delivering optimal modularity results within a solving time of roughly 80 seconds. Our results suggest that the Fujitsu DA can be applied for rapid and efficient optimization for graph partitioning.

quantum–inspired algorithm, digital annealing, simulated annealing, graph partition, electrical microgrid

1 Introduction↩︎

The industry and the academic sector are permeated with optimization problems [1]. For business decisions, it is essential to minimize cost while maximizing profit, and for physics, it is often required to find the solution that minimizes the energy given a Hamiltonian that describes the system. Furthermore, optimization problems are evidenced in everyday-life scenarios, even to the extent of minute or mundane tasks such as putting together work schedules for employees. Although certain problems can be easily solved with analytical methods or classical computing, many are NP-hard, which means solving such problems within polynomial time are seldom encountered for classical computers and that the time complexity of such problems scale exponentially.

Simulated Annealing (SA) [2] is a popular method among a myriad of other approaches attempting to tackle this issue. In quantum physics, SA has been applied to solve for the energy states for quantum Ising models, known to be an NP problem for classical computers [3]. Outside the realm of quantum physics, it has been shown that many combinatorial optimization problems can be mapped to Ising models [[4]][5] and solved by SA. Fujitsu’s Digital Annealer (DA) [[6]][7] is an application-specific CMOS hardware that performs an improved version of SA to solve for Ising-type problems. The specific hardware design enables the speed-up of the processing times. The DA possesses three major differences that discern itself from traditional SA. The DA initializes all runs from the same arbitrary state, eliminating the need to repeatedly calculate initial energies. It also features a parallel-trial scheme which executes all flips individually in parallel at every Monte-Carlo step, increasing the acceptance probability. Moreover, the DA employs dynamic offset, which is an escape mechanism to shorten time spent in local minima. Consequently, the DA can be regarded as an adequate apparatus when we need to solve exceptionally large, complex optimization problems in a limited time frame.

Our research is focused on using the Fujitsu DA to solve graph partitioning problems, also known as community detection. Community detection is pivotal when it concerns virtual microgrid detection in power distribution networks. In order to integrate renewable energy sources to the power grid, the centralized power distribution network currently implemented must be revamped to reduce power loss during transmission and attain higher efficiency for the accommodation of green energy [[8]][9][10]. A number of classical, non-quantum-inspired algorithms have previously been proposed for community detection. They can be categorized as agglomerative or divisive [[11]][12]. Agglomerative methods search for vertex pairs that have similar characteristics and append the corresponding edges to an empty data structure, commencing from the most similar pair of vertices. Divisive methods, on the other hand, find dissimilar vertex pairs and remove their edges, starting from the least similar pair [12]. One example of an agglomerative approach is Self-Avoiding Random Walk [13]. In a Self-Avoiding Random Walk, the walker is prohibited from revisiting a vertex in the same walk. The walker would constantly look for a viable path through vertices not yet traversed, and this single walk terminates when outstanding viable paths cease to exist. The number of steps in a path would be the total number of vertices and multiple walks are conducted. Edges connecting dissimilar vertex pairs are thought to be "bridges" or "highways" that channel two distinct communities, and are traversed more times than other edges within a certain community. An instance of a divisive approach is to remove the edges between the most dissimilar vertices according to the "betweenness " of a pair of vertices, introduced by Newman and Girvan [12]. This algorithm looks for edges having the most "betweenness", an indicator that measures the contribution of an edge to the connection of communities. The betweenness can be the shortest-paths, random-walk betweenness or the current-flow betweenness, depending on the physical characteristics of the graph. Although these classical algorithms are effective, their time complexities are rather significant. In the aforementioned examples, the worst-case time complexities of \(O(n^3log(n))\) and \(O(n^3)\) are estimated for Self-Avoiding Random Walk [13] and the divisive method [12] respectively, where \(n\) is the total number of nodes or vertices in a graph. The DA aims to condense the required time to solve a community detection problem and attempts to secure maximum optimization. In this paper, we expand on our previous efforts[14] and place our emphasis on modularity optimization for graph partitioning and the influences of running time limits. In Section 2, we recapitulate and elaborate more in detail the mathematical formulations. In Section 3, we analyze in depth the results of classic graphs and examples of power distribution systems. Finally, the conclusion of this study is presented in Section 4.

2 Formulation↩︎

Several combinatorial optimization problems can be mapped to the Ising Model and the optimal configuration may be obtained by minimizing the model’s energy, as in (1 ): \[\label{eq:Ising} E(S) = -\sum_{i,j}w_{i,j}s_is_j-\sum_ih_is_i\tag{1}\] where the binary spin variables \(s_i\) and \(s_j\) are either \(+1\) (up) or \(-1\) (down), \(w_{i,j}\) is the exchange energy or interaction between spins at node \(i\) and \(j\), \(h_i\) is the external magnetic field, and \(S\) is the set of all the binary variables. Should we require the utilization of binary variables \(b_i\in{0,1}\), we can transform the Ising representation into a Quadratic Unconstrained Binary Optimization (QUBO) format by the conversion \(b_i = \frac{s_i + 1}{2}\). The mathematical formulations in our work are expressed in QUBO form as required by the Fujitsu DA input structure.

Graph partitioning can be achieved by optimizing modularity, which can be mapped to QUBO form. Below, we explain the formulation in detail. The modularity \(Q\) as the metric for quantifying the quality of communities is [[12]][15][16]: \[\label{eq:mod} Q = \frac{1}{2m}\sum_{ij}\left(A_{ij} - \gamma\frac{k_ik_j}{2m} \right)\delta(c_{i},c_{j})\;\tag{2}\] where \(m = \frac{1}{2}\sum_{ij}^{}A_{ij}\) is the total number of edges accounting for edge weights, \(A_{ij}\)is the coefficient in row \(i\) and column \(j\) of the graph’s adjacency matrix, \(\gamma\) is the resolution parameter which is set to 1 in our work, \(k_{i}\) is the degree of node \(i\) accounting for edge weights, and \(\delta(c_{i},c_{j})=1\) if node \(i\) and node \(j\) are allocated to the same community otherwise 0.

The concept of modularity was coined by Newman and Girvan [12]. It’s value ranges from 0 to 1 and the closer the modularity is to 1 the better the partition is for the graph. Modularity essentially compares the proportion of edges in the same community to the probability that the edges in the graph are connected based on randomness.

The modularity can be utilized as a metric and be calculated after partitioning a graph by any method for the evaluation of the resultant community structure. In this study, we use modularity as an objective function in the QUBO form for Fujitsu DA to conduct modularity optimization. To be more specific, the optimization tasks were performed on the third generation of the Fujitsu DA.

Given a graph \(G\) with \(n\) nodes and partitioned into \(K\) groups, we let \(\hat{x_{i}} = (x_{i0},\;x_{i1},x_{i2},\ldots,x_{ik},\ldots x_{i(K - 1)})\) be the vector associated with node \(i\) and let \(x_{ik}\) be a binary variable, where \(K\) is the total number of communities partitioned. If node \(i\) is in group \(k\), \(x_{ik} = 1\) and all the other binary variables in vector \(\hat{x_{i}}\) would be zero. Since Fujitsu DA minimizes the energy, our objective function would be: \[\label{eq:Matrix} M = -\boldsymbol{ x}^{T}Q\boldsymbol{x}\tag{3}\] where the vector \(\boldsymbol{x} = (x_{00},x_{01},x_{02},\ldots,x_{ik},\ldots x_{n - 1,K - 1})^T\), to maximize modularity. The index \(i\) denotes the vertex and \(k\) denotes the group. In this formalism, the number of binary variables required is \(nK\). The size of all possible configurations, \(2^{nK}\), scales exponentially with the number of binary variables.

In addition to the objective function, two constraints are needed for reasonable partitions. We require each node to be allocated to only one group and each of our groups to have at least one node to avoid empty groups. The two constraints are respectively: \[\label{eq:c1} \sum_{k = 0}^{K - 1}x_{ik} = 1\tag{4}\] and \[\label{eq:c2} \sum_{i = 0}^{n - 1}x_{ik} \geq 1.\tag{5}\] The first constraint, written in QUBO form becomes: \[\label{eq:c1-2} C_1 = \sum_{i = 0}^{n}\left( \left( \sum_{k = 0}^{K - 1}x_{ik} \right) - 1 \right)^{2}\tag{6}\] , while the second constraint, by the slack variable method [17], is converted into: \[\label{eq:c2-2} \sum_{i = 0}^{n - 1}x_{ik} = d + 1\tag{7}\] , where \(d\) is an integer variable and \(0 \leq d \leq n - 1\). To represent \(d\) in numerical form, we use one-hot encoding and express \(d\) using \(n\) binary variables. Hence, in QUBO form, the constraint is expressed as: \[\label{eq:c2-3} C_2 = \sum_{k = 0}^{K - 1}\left( \left( \sum_{i = 0}^{n - 1}x_{ik} \right) - \left( \sum_{i = 0}^{n - 1}ix_{ik} \right) - 1 \right)^{2}.\tag{8}\] The full Hamiltonian that is imported into Fujitsu DA is: \[\label{eq:H} H = M + \lambda_{c_1}C_1 + \lambda_{c_2}C_2\tag{9}\] , where \(\lambda_{c_1}\) and \(\lambda_{c_2}\) are the penalty multipliers of constraints \(C_1\) and \(C_2\) respectively and are set empirically depending on the problem [9]. Fujitsu DA provides a one-way one-hot constraint interface as well as an inequality constraint separation feature that assist users in tweaking these multipliers, which could reduce time spent on experimenting with various parameter values. One of the important parameters that control the solution quality is the maximum running time for the DA, controlled by the parameter \(time\_limit\_sec\) in the Application Programming Interface (API). A longer running time permits the solver to visit more configurations and it would be more likely for it to locate the global minima. The actual solver running time is returned under the parameter \(solve\_time\). It was found that there was a difference of a few seconds in those two parameters; thus, both values are reported in the Section 3.

3 Results↩︎

3.1 Test Graphs↩︎

We compared the highest modularity obtained from Fujitsu DA with those reported in two other publications[[12]][13]. The results from these two publications were unweighted graphs. Experiments were conducted with four graphs: Karate Club (KC), Les Miserables (LM), American Football (AF), and Dolphin (D). Karate Club and Les Miserables can either be weighted graphs or unweighted graphs, whilst others are unweighted graphs. Karate Club depicts a social interaction network in a karate club at an American university [18], Les Miserables is a network of character co-appearances in the novel Les Miserables [19], American Football describes a network of football games among division IA universities in the US [20], and Dolphin exhibits the social network of bottlenose dolphins [21]. Karate Club, Les Miserables, and American Football graphs were all imported from the Python library NetworkX version 3.1 [22], and the data for Dolphin was downloaded from the website Network Data Repository [23]. We provide both weighted and unweighted graph modularity results where it is applicable. We set the parameter \("time\_limit\_sec"\) to 10 for each graph executed, which would limit the running time to approximately 10 seconds for each graph. We also partitioned each graph with the parameter \("time\_limit\_sec"\) set to 80, and verified that the results were identical to their 10-second counterparts.

The optimal modularity and the corresponding number of partitions are shown in Table 1. Fujitsu DA performed outstandingly, yielding the most optimal results for all four graphs and satisfying both constraints. KC results for a weighted graph were reported in our previous publication [14] and we performed additional experiments on KC, LM, AF, and D for this paper.

Table 1: Network Test Results
Q/K DA Weighted DA Unweighted [12] [13]
KC 0.4449/4 0.4198/4 0.4/2 0.4197/4
LM 0.5667/6 0.5600/6 0.54/11 0.5467/7
AF N/A 0.6046/10 N/A 0.6044/10
D N/A 0.5285/5 0.52/5 0.5277/5

3.2 Practical Examples↩︎

As a practical application of our study, we conducted graph partitioning with Fujitsu DA on two power grid graphs in addition to the IEEE case studies provided in our previous work [14]. The edge weights were modelled as the inverse of the absolute value of impedance \(\frac{1}{|r+jx|}\) [24], where \(r\) was the resistance, \(x\) was the reactance, and \(j\) was \(\sqrt{-1}\) here. The first power grid featured a distribution network of Taiwan Power Company (TPC) [25], with a total of 94 nodes and 96 edges. The second power grid was Case 1354pegase, which represented a portion of the European high voltage transmission network [[26]][27], with 1354 nodes and 1710 edges. We utilized the \(nx.Graph()\) data structure of NetworkX version 3.1 [22] to construct a graph from the raw data [25], whilst we imported Case 1354pegase from the Python package PandaPower version 2.13.1 [28]. We omitted parallel edges in our analyses for all of the graphs.

3.2.1 Taiwan Power Company Distribution Network (TPC)↩︎

The partitioned graph bearing the highest modularity for TPC is shown in Fig. 1, and the modularity against number of communities for TPC is plotted in Fig. 2. The highest modularity for TPC is 0.858432 for 15 groups. We set the parameter \("time\_limit\_sec"\) to 10 when partitioning TPC, which would limit the running time to approximately 10 seconds. We also partitioned TPC with the parameter \("time\_limit\_sec"\) set to 80, and verified that the results were identical to its 10-second counterpart.

Figure 1: Partitioned TPC graph with the highest modularity 0.858432, with group number \(K=15\), by Fujitsu Digital Annealer.

Figure 2: Modularity versus number of groups for TPC graph solved with Fujitsu DA. The highest modularity is 0.858432 for 15 groups.

3.2.2 Case 1354pegase↩︎

The modularity against number of communities for Case 1354pegase is shown in Fig. 3. We were able to partition the graph up to 45 groups and the modularity value we obtained at 45 groups was 0.945187 when the parameter \(time\_limit\_sec\) was set to 80. We initially ran Fujitsu DA with \(time\_limit\_sec\) at 10, commensurate with TPC and previous test graphs, to study the impact of a larger graph on Fujitsu DA’s performance. We subsequently observed a sharp drop in modularity performance at 19 and 36 groups, as in Fig. 3, which indicated a requisite for longer execution times. For aesthetic purposes, we omitted results above 35 groups where \(time\_limit\_sec\) was only 10.

Figure 3: Modularity versus number of groups for parameter \(time\_limit\_sec\, (T)=10\) and \(80\), solved with Fujitsu DA for Case 1354pegase. The modularity for 45 groups is 0.945187 at \(time\_limit\_sec\, (T)=80\).

We further studied the relation between modularity and running time for 19 groups and 45 groups. 19-groups was where the drop occurred and deserved an examination, whilst 45-groups was thoroughly scrutinized in an attempt to find its maximum modularity. As aforementioned, the parameter \(time\_limit\_sec\) limits the solving time; nonetheless, the actual solving time reported by Fujitsu DA in the entry called \(solve\_time\) would exceed this limit by a few seconds. Hence, the actual solving times are also revealed in Fig. 4 and Fig. 5. Despite this discrepancy, the actual solving times didn’t deviate much from what was set for \(time\_limit\_sec\), which is why we believe \(time\_limit\_sec\) does in effect limit the running time and is generally indicative of the DA’s actual execution time.

Figure 4: Modularity versus time limit and the solve time for 19 groups, solved with Fujitsu DA for Case 1354pegase. The modularity at \(time\_limit\_sec=10\) is 0.868371, the modularity at \(time\_limit\_sec=20\) is 0.92062, and the modularity at \(time\_limit\_sec=80\) is 0.927689.

Figure 5: Modularity versus the time limit and the solve time for 45 groups, solved with Fujitsu DA for Case 1354pegase. The modularity at \(time\_limit\_sec=80\) is 0.945187 and the modularity at \(time\_limit\_sec=1500\) is 0.95764.

In 19-groups, the modularity underwent a stark escalation even though \(time\_limit\_sec\) only increased by 10 seconds from 10 to 20, as shown in Fig. 4. The modularity rose by a total of 6.8% from 0.868371 at \(time\_limit\_sec=10\) to 0.927689 at \(time\_limit\_sec=80\). Once \(time\_limit\_sec\) reached 20 or above, the increase in modularity became subtle, achieving only a 0.77% growth in modularity from 0.92062 at \(time\_limit\_sec=20\) to 0.927689 at \(time\_limit\_sec=80\).

For 45-groups, we perceived that the modularity gradually converged to 0.95764, reaching 0.957637 after running for around 1200 seconds and attaining a maximum value of 0.95764 after approximately 1500 seconds of running time, as illustrated in Fig. 5. In spite of the somewhat magnified depiction in Fig. 5, the modularity merely increased 1.32% from 0.945187 at \(time\_limit\_sec=80\) to 0.95764 at \(time\_limit\_sec=1500\). Therefore, we believe that the DA can still deliver desirable results in a limited time duration as short as approximately 80 seconds for a 45-group partition of the Case 1354pegase graph. A 45-group partition of the Case 1354pegase graph required \(1354\times45=60,930\) binary variables in total, roughly half of the maximum 100,000 binary variables available on the third generation of the Fujitsu DA. Despite the large size, the DA was able to return optimal solutions within reasonable times.

4 Conclusion↩︎

We performed a thorough analysis regarding the ability of Fujitsu’s Digital Annealer (DA) to explore the most optimal configurations in graph partitioning problems. The graph partitioning or community detection problem was transformed into the Quadratic Unconstrained Binary Optimization (QUBO) format and subsequently imported to Fujitsu DA. We evaluated the relation between modularity and the number of communities partitioned. We also shed light on the influence of running time on modularity optimization outcomes. Fujitsu DA performed exceptionally well in four test graphs. Fujitsu DA achieved a modularity of 0.4449 for Karate Club with weights, 0.5667 for Les Miserables with weights, 0.6046 for American Football, and 0.5285 for Dolphin. As practical power grid case studies, we evaluated a power distribution network from Taiwan Power Company (TPC) and also Case 1354pegase. The highest modularity obtained by Fujitsu DA was 0.858432 for 15 partitions of the TPC distribution network. For Case 1354pegase, a 45-group partition was accomplished with a modularity of 0.945187 within a running time of roughly 80 seconds. Further experiments revealed that the modularity attained at about 80 seconds differed little from 0.95764, the modularity obtained at about 1500 seconds of solving time, only a 1.32% increase. Hence, we believe our findings in this paper can evince the potential of DA to rapidly solve community detection and power grid optimization problems among industries.

Acknowledgments↩︎

The authors would like to thank Prof. Yu–Cheng Lin and Yu–Chen Shu for their insightful discussions. This work is supported by National Science and Technology Council (NSTC) of Taiwan under the grant No. 112–2119–M–006– 004.

Yu-Ting, Kao Yu-Ting, Kao achieved his B.S. in Electrophysics and B.S. in Money and Banking at National Chengchi University, Taipei City, Taiwan. He is currently a Research Assistant under Prof. Hsiu–Chuan, Hsu at the Graduate Institute of Applied Physics, National Chengchi University and is currently planning to pursue a Master’s degree in science and technology.

Hsiu–Chuan, Hsu Hsiu–Chuan, Hsu attained her Ph.D. in physics from Pennsylvania State University, USA. She is currently an Assistant Professor at the Graduate Institute of Applied Physics and Department of Computer Science at National Chengchi University, Taipei City, Taiwan.

References↩︎

[1]
P. Y. Liao, S. J. Bhie, C.-H. Ou, C.-Y. Chen, and C.-R. Chang, “Complete the last mile,” IEEE Nanotechnology Magazine, vol. 17, no. 2, pp. 9–14, 2023.
[2]
E. Aarts and J. Korst, Simulated annealing and Boltzmann machines : a stochastic approach to combinatorial optimization and neural computing. Wiley-Interscience series in discrete mathematics and optimization, United States: Wiley, 1989.
[3]
Y. Fu and P. W. Anderson, “Application of statistical mechanics to np-complete problems in combinatorial optimisation,” Journal of Physics A: Mathematical and General, vol. 19, p. 1605, jun 1986.
[4]
A. Lucas, “Ising formulations of many np problems,” Frontiers in Physics, vol. 2, 2014.
[5]
F. Glover, G. Kochenberger, and Y. Du, “A tutorial on formulating and using qubo models,” 2019.
[6]
M. Aramon, G. Rosenberg, E. Valiante, T. Miyazawa, H. Tamura, and H. G. Katzgraber, “Physics-inspired optimization for quadratic unconstrained problems using a digital annealer,” Frontiers in Physics, vol. 7, 2019.
[7]
S. Matsubara, M. Takatsu, T. Miyazawa, T. Shibasaki, Y. Watanabe, K. Takemoto, and H. Tamura, “Digital annealer for high-speed solving of combinatorial optimization problems and its applications,” in 2020 25th Asia and South Pacific Design Automation Conference (ASP-DAC), pp. 667–672, 2020.
[8]
X. Xu, F. Xue, S. Lu, H. Zhu, L. Jiang, and B. Han, “Structural and hierarchical partitioning of virtual microgrids in power distribution network,” IEEE Systems Journal, vol. 13, no. 1, pp. 823–832, 2019.
[9]
M. Fernández-Campoamor, C. O’Meara, G. Cortiana, V. Peric, and J. Bernabé-Moreno, “Community detection in electrical grids using quantum annealing,” 2021.
[10]
T. Morstyn, “Annealing-based quantum computing for combinatorial optimal power flow,” IEEE Transactions on Smart Grid, vol. 14, no. 2, pp. 1093–1102, 2023.
[11]
J. Scott and P. Carrington, “The sage handbook of social network analysis,” Nov 2014.
[12]
M. E. J. Newman and M. Girvan, “Finding and evaluating community structure in networks,” Phys. Rev. E, vol. 69, p. 026113, Feb 2004.
[13]
G. de Guzzi Bagnato, J. R. F. Ronqui, and G. Travieso, “Community detection in networks using self-avoiding random walks,” Physica A: Statistical Mechanics and its Applications, vol. 505, pp. 1046–1055, 2018.
[14]
Y.-T. Kao, J.-L. Liao, and H.-C. Hsu, “Solving combinatorial optimization problems on fujitsu digital annealer,” 2023.
[15]
V. D. Blondel, J.-L. Guillaume, R. Lambiotte, and E. Lefebvre, “Fast unfolding of communities in large networks,” Journal of Statistical Mechanics: Theory and Experiment, vol. 2008, p. P10008, oct 2008.
[16]
A. Arenas, A. Fernández, and S. Gómez, “Analysis of the structure of complex networks at different resolution levels,” New Journal of Physics, vol. 10, p. 053039, may 2008.
[17]
H. N. Djidjev, “Quantum annealing with inequality constraints: The set cover problem,” Advanced Quantum Technologies, vol. 6, 9 2023.
[18]
W. W. Zachary, “An information flow model for conflict and fission in small groups,” Journal of Anthropological Research, vol. 33, no. 4, pp. 452–473, 1977.
[19]
D. E. Knuth, The Stanford GraphBase: a platform for combinatorial computing, vol. 1. AcM Press New York, 1993.
[20]
M. Girvan and M. E. J. Newman, “Community structure in social and biological networks,” Proceedings of the National Academy of Sciences, vol. 99, no. 12, pp. 7821–7826, 2002.
[21]
D. Lusseau, K. Schneider, O. J. Boisseau, P. Haase, E. Slooten, and S. M. Dawson, “The bottlenose dolphin community of doubtful sound features a large proportion of long-lasting associations,” Behavioral Ecology and Sociobiology, vol. 54, no. 4, pp. 396–405, 2003.
[22]
A. A. Hagberg, D. A. Schult, and P. J. Swart, “Exploring network structure, dynamics, and function using networkx,” in Proceedings of the 7th Python in Science Conference(G. Varoquaux, T. Vaught, and J. Millman, eds.), (Pasadena, CA USA), pp. 11 – 15, 2008.
[23]
R. A. Rossi and N. K. Ahmed, “The network data repository with interactive graph analytics and visualization,” in AAAI, 2015.
[24]
E. Cotilla-Sanchez, P. Hines, C. Barrows, S. Blumsack, and M. Patel, “Multi-attribute partitioning of power networks based on electrical distance,” IEEE Transactions on Power Systems, vol. 28, no. 4, pp. 4979–4987, 2013.
[25]
C.-T. Su and C.-S. Lee, “Network reconfiguration of distribution systems using improved mixed-integer hybrid differential evolution,” IEEE Transactions on Power Delivery, vol. 18, no. 3, pp. 1022–1027, 2003.
[26]
C. Josz, S. Fliscounakis, J. Maeght, and P. Panciatici, “Ac power flow data in matpower and qcqp format: itesla, rte snapshots, and pegase,” 2016.
[27]
S. Fliscounakis, P. Panciatici, F. Capitanescu, and L. Wehenkel, “Contingency ranking with respect to overloads in very large power systems taking into account uncertainty, preventive, and corrective actions,” IEEE Transactions on Power Systems, vol. 28, pp. 4909–4917, 2013.
[28]
L. Thurner, A. Scheidler, F. Schafer, J. H. Menke, J. Dollichon, F. Meier, S. Meinecke, and M. Braun, “pandapower - an open source python tool for convenient modeling, analysis and optimization of electric power systems,” IEEE Transactions on Power Systems, 2018.