-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathgenerators.rs
1809 lines (1775 loc) · 61.5 KB
/
generators.rs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// Licensed under the Apache License, Version 2.0 (the "License"); you may
// not use this file except in compliance with the License. You may obtain
// a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
// WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
// License for the specific language governing permissions and limitations
// under the License.
use petgraph::algo;
use petgraph::prelude::*;
use petgraph::Undirected;
use pyo3::exceptions::{PyIndexError, PyOverflowError, PyValueError};
use pyo3::prelude::*;
use pyo3::wrap_pyfunction;
use pyo3::IntoPyObjectExt;
use pyo3::Python;
use super::{digraph, graph, StablePyGraph};
use rustworkx_core::generators as core_generators;
/// Generate an undirected cycle graph
///
/// :param int num_nodes: The number of nodes to generate the graph with. Node
/// weights will be None if this is specified. If both ``num_nodes`` and
/// ``weights`` are set this will be ignored and ``weights`` will be used.
/// :param list weights: A list of node weights, the first element in the list
/// will be the center node of the cycle graph. If both ``num_nodes`` and
/// ``weights`` are set this will be ignored and ``weights`` will be used.
/// :param bool multigraph: When set to ``False`` the output
/// :class:`~rustworkx.PyGraph` object will not be not be a multigraph and
/// won't allow parallel edges to be added. Instead
/// calls which would create a parallel edge will update the existing edge.
///
/// :returns: The generated cycle graph
/// :rtype: PyGraph
/// :raises IndexError: If neither ``num_nodes`` or ``weights`` are specified
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import mpl_draw
///
/// graph = rustworkx.generators.cycle_graph(5)
/// mpl_draw(graph)
///
#[pyfunction]
#[pyo3(
signature=(num_nodes=None, weights=None, multigraph=true),
)]
pub fn cycle_graph(
py: Python,
num_nodes: Option<usize>,
weights: Option<Vec<PyObject>>,
multigraph: bool,
) -> PyResult<graph::PyGraph> {
let default_fn = || py.None();
let graph: StablePyGraph<Undirected> =
match core_generators::cycle_graph(num_nodes, weights, default_fn, default_fn, false) {
Ok(graph) => graph,
Err(_) => {
return Err(PyIndexError::new_err(
"num_nodes and weights list not specified",
))
}
};
Ok(graph::PyGraph {
graph,
node_removed: false,
multigraph,
attrs: py.None(),
})
}
/// Generate a directed cycle graph
///
/// :param int num_nodes: The number of nodes to generate the graph with. Node
/// weights will be None if this is specified. If both ``num_nodes`` and
/// ``weights`` are set this will be ignored and ``weights`` will be used.
/// :param list weights: A list of node weights, the first element in the list
/// will be the center node of the cycle graph. If both ``num_nodes`` and
/// ``weights`` are set this will be ignored and ``weights`` will be used.
/// :param bool bidirectional: Adds edges in both directions between two nodes
/// if set to ``True``. Default value is ``False``
/// :param bool multigraph: When set to ``False`` the output
/// :class:`~rustworkx.PyDiGraph` object will not be not be a multigraph and
/// won't allow parallel edges to be added. Instead
/// calls which would create a parallel edge will update the existing edge.
///
/// :returns: The generated cycle graph
/// :rtype: PyDiGraph
/// :raises IndexError: If neither ``num_nodes`` or ``weights`` are specified
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import mpl_draw
///
/// graph = rustworkx.generators.directed_cycle_graph(5)
/// mpl_draw(graph)
///
#[pyfunction]
#[pyo3(
signature=(num_nodes=None, weights=None, bidirectional=false, multigraph=true),
)]
pub fn directed_cycle_graph(
py: Python,
num_nodes: Option<usize>,
weights: Option<Vec<PyObject>>,
bidirectional: bool,
multigraph: bool,
) -> PyResult<digraph::PyDiGraph> {
let default_fn = || py.None();
let graph: StablePyGraph<Directed> = match core_generators::cycle_graph(
num_nodes,
weights,
default_fn,
default_fn,
bidirectional,
) {
Ok(graph) => graph,
Err(_) => {
return Err(PyIndexError::new_err(
"num_nodes and weights list not specified",
))
}
};
Ok(digraph::PyDiGraph {
graph,
node_removed: false,
check_cycle: false,
cycle_state: algo::DfsSpace::default(),
multigraph,
attrs: py.None(),
})
}
/// Generate an undirected path graph
///
/// :param int num_nodes: The number of nodes to generate the graph with. Node
/// weights will be None if this is specified. If both ``num_nodes`` and
/// ``weights`` are set this will be ignored and ``weights`` will be used.
/// :param list weights: A list of node weights, the first element in the list
/// will be the center node of the path graph. If both ``num_nodes`` and
/// ``weights`` are set this will be ignored and ``weights`` will be used.
/// :param bool multigraph: When set to ``False`` the output
/// :class:`~rustworkx.PyGraph` object will not be not be a multigraph and
/// won't allow parallel edges to be added. Instead
/// calls which would create a parallel edge will update the existing edge.
///
/// :returns: The generated path graph
/// :rtype: PyGraph
/// :raises IndexError: If neither ``num_nodes`` or ``weights`` are specified
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import mpl_draw
///
/// graph = rustworkx.generators.path_graph(10)
/// mpl_draw(graph)
///
#[pyfunction]
#[pyo3(
signature=(num_nodes=None, weights=None, multigraph=true),
)]
pub fn path_graph(
py: Python,
num_nodes: Option<usize>,
weights: Option<Vec<PyObject>>,
multigraph: bool,
) -> PyResult<graph::PyGraph> {
let default_fn = || py.None();
let graph: StablePyGraph<Undirected> =
match core_generators::path_graph(num_nodes, weights, default_fn, default_fn, false) {
Ok(graph) => graph,
Err(_) => {
return Err(PyIndexError::new_err(
"num_nodes and weights list not specified",
))
}
};
Ok(graph::PyGraph {
graph,
node_removed: false,
multigraph,
attrs: py.None(),
})
}
/// Generate a directed path graph
///
/// :param int num_nodes: The number of nodes to generate the graph with. Node
/// weights will be None if this is specified. If both ``num_nodes`` and
/// ``weights`` are set this will be ignored and ``weights`` will be used.
/// :param list weights: A list of node weights, the first element in the list
/// will be the center node of the path graph. If both ``num_nodes`` and
/// ``weights`` are set this will be ignored and ``weights`` will be used.
/// :param bool bidirectional: Adds edges in both directions between two nodes
/// if set to ``True``. Default value is ``False``
/// :param bool multigraph: When set to ``False`` the output
/// :class:`~rustworkx.PyDiGraph` object will not be not be a multigraph and
/// won't allow parallel edges to be added. Instead
/// calls which would create a parallel edge will update the existing edge.
///
/// :returns: The generated path graph
/// :rtype: PyDiGraph
/// :raises IndexError: If neither ``num_nodes`` or ``weights`` are specified
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import mpl_draw
///
/// graph = rustworkx.generators.directed_path_graph(10)
/// mpl_draw(graph)
///
#[pyfunction]
#[pyo3(
signature=(num_nodes=None, weights=None, bidirectional=false, multigraph=true),
)]
pub fn directed_path_graph(
py: Python,
num_nodes: Option<usize>,
weights: Option<Vec<PyObject>>,
bidirectional: bool,
multigraph: bool,
) -> PyResult<digraph::PyDiGraph> {
let default_fn = || py.None();
let graph: StablePyGraph<Directed> = match core_generators::path_graph(
num_nodes,
weights,
default_fn,
default_fn,
bidirectional,
) {
Ok(graph) => graph,
Err(_) => {
return Err(PyIndexError::new_err(
"num_nodes and weights list not specified",
))
}
};
Ok(digraph::PyDiGraph {
graph,
node_removed: false,
check_cycle: false,
cycle_state: algo::DfsSpace::default(),
multigraph,
attrs: py.None(),
})
}
/// Generate an undirected star graph
///
/// :param int num_nodes: The number of nodes to generate the graph with. Node
/// weights will be None if this is specified. If both ``num_nodes`` and
/// ``weights`` are set this will be ignored and ``weights`` will be used.
/// :param list weights: A list of node weights, the first element in the list
/// will be the center node of the star graph. If both ``num_nodes`` and
/// ``weights`` are set this will be ignored and ``weights`` will be used.
/// :param bool multigraph: When set to ``False`` the output
/// :class:`~rustworkx.PyGraph` object will not be not be a multigraph and
/// won't allow parallel edges to be added. Instead
/// calls which would create a parallel edge will update the existing edge.
///
///
/// :returns: The generated star graph
/// :rtype: PyGraph
/// :raises IndexError: If neither ``num_nodes`` or ``weights`` are specified
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import mpl_draw
///
/// graph = rustworkx.generators.star_graph(10)
/// mpl_draw(graph)
///
#[pyfunction]
#[pyo3(
signature=(num_nodes=None, weights=None, multigraph=true),
)]
pub fn star_graph(
py: Python,
num_nodes: Option<usize>,
weights: Option<Vec<PyObject>>,
multigraph: bool,
) -> PyResult<graph::PyGraph> {
let default_fn = || py.None();
let graph: StablePyGraph<Undirected> =
match core_generators::star_graph(num_nodes, weights, default_fn, default_fn, false, false)
{
Ok(graph) => graph,
Err(_) => {
return Err(PyIndexError::new_err(
"num_nodes and weights list not specified",
))
}
};
Ok(graph::PyGraph {
graph,
node_removed: false,
multigraph,
attrs: py.None(),
})
}
/// Generate a directed star graph
///
/// :param int num_nodes: The number of nodes to generate the graph with. Node
/// weights will be None if this is specified. If both ``num_nodes`` and
/// ``weights`` are set this will be ignored and ``weights`` will be used.
/// :param list weights: A list of node weights, the first element in the list
/// will be the center node of the star graph. If both ``num_nodes`` and
/// ``weights`` are set this will be ignored and ``weights`` will be used.
/// :param bool inward: If set ``True`` the nodes will be directed towards the
/// center node. This parameter is ignored if ``bidirectional`` is set to
/// ``True``.
/// :param bool bidirectional: Adds edges in both directions between two nodes
/// if set to ``True``. Default value is ``False``.
/// :param bool multigraph: When set to ``False`` the output
/// :class:`~rustworkx.PyDiGraph` object will not be not be a multigraph and
/// won't allow parallel edges to be added. Instead
/// calls which would create a parallel edge will update the existing edge.
///
/// :returns: The generated star graph
/// :rtype: PyDiGraph
/// :raises IndexError: If neither ``num_nodes`` or ``weights`` are specified
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import mpl_draw
///
/// graph = rustworkx.generators.directed_star_graph(10)
/// mpl_draw(graph)
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import mpl_draw
///
/// graph = rustworkx.generators.directed_star_graph(10, inward=True)
/// mpl_draw(graph)
///
#[pyfunction]
#[pyo3(
signature=(num_nodes=None, weights=None, inward=false, bidirectional=false, multigraph=true),
)]
pub fn directed_star_graph(
py: Python,
num_nodes: Option<usize>,
weights: Option<Vec<PyObject>>,
inward: bool,
bidirectional: bool,
multigraph: bool,
) -> PyResult<digraph::PyDiGraph> {
let default_fn = || py.None();
let graph: StablePyGraph<Directed> = match core_generators::star_graph(
num_nodes,
weights,
default_fn,
default_fn,
inward,
bidirectional,
) {
Ok(graph) => graph,
Err(_) => {
return Err(PyIndexError::new_err(
"num_nodes and weights list not specified",
))
}
};
Ok(digraph::PyDiGraph {
graph,
node_removed: false,
check_cycle: false,
cycle_state: algo::DfsSpace::default(),
multigraph,
attrs: py.None(),
})
}
/// Generate an undirected mesh (complete) graph where every node is connected to every other
///
/// :param int num_nodes: The number of nodes to generate the graph with. Node
/// weights will be None if this is specified. If both ``num_nodes`` and
/// ``weights`` are set this will be ignored and ``weights`` will be used.
/// :param list weights: A list of node weights. If both ``num_nodes`` and
/// ``weights`` are set this will be ignored and ``weights`` will be used.
/// :param bool multigraph: When set to ``False`` the output
/// :class:`~rustworkx.PyGraph` object will not be not be a multigraph and
/// won't allow parallel edges to be added. Instead
/// calls which would create a parallel edge will update the existing edge.
///
/// :returns: The generated mesh graph
/// :rtype: PyGraph
/// :raises IndexError: If neither ``num_nodes`` or ``weights`` are specified
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import mpl_draw
///
/// graph = rustworkx.generators.mesh_graph(4)
/// mpl_draw(graph)
///
#[pyfunction]
#[pyo3(
signature=(num_nodes=None, weights=None, multigraph=true),
)]
pub fn mesh_graph(
py: Python,
num_nodes: Option<usize>,
weights: Option<Vec<PyObject>>,
multigraph: bool,
) -> PyResult<graph::PyGraph> {
complete_graph(py, num_nodes, weights, multigraph)
}
/// Generate a directed mesh (complete) graph where every node is connected to every other
///
/// :param int num_nodes: The number of nodes to generate the graph with. Node
/// weights will be None if this is specified. If both ``num_nodes`` and
/// ``weights`` are set this will be ignored and ``weights`` will be used.
/// :param list weights: A list of node weights. If both ``num_nodes`` and
/// ``weights`` are set this will be ignored and ``weights`` will be used.
/// :param bool multigraph: When set to ``False`` the output
/// :class:`~rustworkx.PyDiGraph` object will not be not be a multigraph and
/// won't allow parallel edges to be added. Instead
/// calls which would create a parallel edge will update the existing edge.
///
/// :returns: The generated mesh graph
/// :rtype: PyDiGraph
/// :raises IndexError: If neither ``num_nodes`` or ``weights`` are specified
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import mpl_draw
///
/// graph = rustworkx.generators.directed_mesh_graph(4)
/// mpl_draw(graph)
///
#[pyfunction]
#[pyo3(
signature=(num_nodes=None, weights=None, multigraph=true),
)]
pub fn directed_mesh_graph(
py: Python,
num_nodes: Option<usize>,
weights: Option<Vec<PyObject>>,
multigraph: bool,
) -> PyResult<digraph::PyDiGraph> {
directed_complete_graph(py, num_nodes, weights, multigraph)
}
/// Generate an undirected grid graph.
///
/// :param int rows: The number of rows to generate the graph with.
/// If specified, ``cols`` also need to be specified
/// :param int cols: The number of cols to generate the graph with.
/// If specified, ``rows`` also need to be specified. rows*cols
/// defines the number of nodes in the graph
/// :param list weights: A list of node weights. Nodes are filled row wise.
/// If rows and cols are not specified, then a linear graph containing
/// all the values in weights list is created.
/// If number of nodes(rows*cols) is less than length of
/// weights list, the trailing weights are ignored.
/// If number of nodes(rows*cols) is greater than length of
/// weights list, extra nodes with None weight are appended.
/// :param bool multigraph: When set to ``False`` the output
/// :class:`~rustworkx.PyGraph` object will not be not be a multigraph and
/// won't allow parallel edges to be added. Instead
/// calls which would create a parallel edge will update the existing edge.
///
/// :returns: The generated grid graph
/// :rtype: PyGraph
/// :raises IndexError: If neither ``rows`` or ``cols`` and ``weights`` are
/// specified
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import mpl_draw
///
/// graph = rustworkx.generators.grid_graph(2, 3)
/// mpl_draw(graph)
///
#[pyfunction]
#[pyo3(
signature=(rows=None, cols=None, weights=None, multigraph=true),
)]
pub fn grid_graph(
py: Python,
rows: Option<usize>,
cols: Option<usize>,
weights: Option<Vec<PyObject>>,
multigraph: bool,
) -> PyResult<graph::PyGraph> {
let default_fn = || py.None();
let graph: StablePyGraph<Undirected> =
match core_generators::grid_graph(rows, cols, weights, default_fn, default_fn, false) {
Ok(graph) => graph,
Err(_) => return Err(PyIndexError::new_err("rows and cols not specified")),
};
Ok(graph::PyGraph {
graph,
node_removed: false,
multigraph,
attrs: py.None(),
})
}
/// Generate a directed grid graph.
///
/// The edges propagate towards right and bottom direction if ``bidirectional`` is ``False``
///
/// :param int rows: The number of rows to generate the graph with.
/// If specified, ``cols`` also need to be specified.
/// :param int cols: The number of cols to generate the graph with.
/// If specified, ``rows`` also need to be specified. rows*cols
/// defines the number of nodes in the graph.
/// :param list weights: A list of node weights. Nodes are filled row wise.
/// If rows and cols are not specified, then a linear graph containing
/// all the values in weights list is created.
/// If number of nodes(rows*cols) is less than length of
/// weights list, the trailing weights are ignored.
/// If number of nodes(rows*cols) is greater than length of
/// weights list, extra nodes with None weight are appended.
/// :param bidirectional: A parameter to indicate if edges should exist in
/// both directions between nodes. Defaults to ``False``.
/// :param bool multigraph: When set to ``False`` the output
/// :class:`~rustworkx.PyDiGraph` object will not be not be a multigraph and
/// won't allow parallel edges to be added. Instead
/// calls which would create a parallel edge will update the existing edge.
///
/// :returns: The generated grid graph
/// :rtype: PyDiGraph
/// :raises IndexError: If neither ``rows`` or ``cols`` and ``weights`` are
/// specified
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import mpl_draw
///
/// graph = rustworkx.generators.directed_grid_graph(2, 3)
/// mpl_draw(graph)
///
#[pyfunction]
#[pyo3(
signature=(rows=None, cols=None, weights=None, bidirectional=false, multigraph=true),
)]
pub fn directed_grid_graph(
py: Python,
rows: Option<usize>,
cols: Option<usize>,
weights: Option<Vec<PyObject>>,
bidirectional: bool,
multigraph: bool,
) -> PyResult<digraph::PyDiGraph> {
let default_fn = || py.None();
let graph: StablePyGraph<Directed> = match core_generators::grid_graph(
rows,
cols,
weights,
default_fn,
default_fn,
bidirectional,
) {
Ok(graph) => graph,
Err(_) => return Err(PyIndexError::new_err("rows and cols not specified")),
};
Ok(digraph::PyDiGraph {
graph,
node_removed: false,
check_cycle: false,
cycle_state: algo::DfsSpace::default(),
multigraph,
attrs: py.None(),
})
}
/// Generate an undirected heavy square graph.
///
/// Fig. 6 of https://arxiv.org/abs/1907.09528.
/// An ASCII diagram of the graph is given by:
///
/// .. code-block:: console
///
/// ... S ...
/// \ / \
/// ... D D D ...
/// | | |
/// ... F-S-F-S-F-...
/// | | |
/// ... D D D ...
/// | | |
/// ... F-S-F-S-F-...
/// | | |
/// .........
/// | | |
/// ... D D D ...
/// \ / \
/// ... S ...
///
///
/// .. note::
///
/// This function generates the four-frequency variant of the heavy square code.
/// This function implements Fig 10.b left of the `paper <https://arxiv.org/abs/1907.09528>`_.
/// This function doesn't support the variant Fig 10.b right.
///
/// Note that if ``d`` is set to ``1`` a :class:`~rustworkx.PyGraph` with a
/// single node will be returned.
///
/// :param int d: distance of the code. If ``d`` is set to ``1`` a
/// :class:`~rustworkx.PyGraph` with a single node will be returned. ``d`` must be
/// an odd number.
/// :param bool multigraph: When set to ``False`` the output
/// :class:`~rustworkx.PyGraph` object will not be not be a multigraph and
/// won't allow parallel edges to be added. Instead
/// calls which would create a parallel edge will update the existing edge.
///
/// :returns: The generated heavy square graph
/// :rtype: PyGraph
/// :raises IndexError: If d is even.
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import graphviz_draw
///
/// graph = rustworkx.generators.heavy_square_graph(3)
/// graphviz_draw(graph, lambda node: dict(
/// color='black', fillcolor='lightblue', style='filled'))
///
#[pyfunction]
#[pyo3(
signature=(d, multigraph=true),
)]
pub fn heavy_square_graph(py: Python, d: usize, multigraph: bool) -> PyResult<graph::PyGraph> {
let default_fn = || py.None();
let graph: StablePyGraph<Undirected> =
match core_generators::heavy_square_graph(d, default_fn, default_fn, false) {
Ok(graph) => graph,
Err(_) => return Err(PyIndexError::new_err("d must be an odd number.")),
};
Ok(graph::PyGraph {
graph,
node_removed: false,
multigraph,
attrs: py.None(),
})
}
/// Generate an directed heavy square graph.
///
/// Fig. 6 of https://arxiv.org/abs/1907.09528.
/// An ASCII diagram of the graph is given by:
///
/// .. code-block:: console
///
/// ... S ...
/// \ / \
/// ... D D D ...
/// | | |
/// ... F-S-F-S-F-...
/// | | |
/// ... D D D ...
/// | | |
/// ... F-S-F-S-F-...
/// | | |
/// .........
/// | | |
/// ... D D D ...
/// \ / \
/// ... S ...
///
///
/// .. note::
///
/// This function generates the four-frequency variant of the heavy square code.
/// This function implements Fig 10.b left of the `paper <https://arxiv.org/abs/1907.09528>`_.
/// This function doesn't support the variant Fig 10.b right.
///
/// :param int d: distance of the code. If ``d`` is set to ``1`` a
/// :class:`~rustworkx.PyDiGraph` with a single node will be returned. ``d`` must be
/// an odd number.
/// :param bidirectional: A parameter to indicate if edges should exist in
/// both directions between nodes. Defaults to ``False``.
/// :param bool multigraph: When set to ``False`` the output
/// :class:`~rustworkx.PyDiGraph` object will not be not be a multigraph and
/// won't allow parallel edges to be added. Instead
/// calls which would create a parallel edge will update the existing edge.
///
/// :returns: The generated directed heavy square graph
/// :rtype: PyDiGraph
/// :raises IndexError: If d is even.
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import graphviz_draw
///
/// graph = rustworkx.generators.directed_heavy_square_graph(3)
/// graphviz_draw(graph, lambda node: dict(
/// color='black', fillcolor='lightblue', style='filled'))
///
#[pyfunction]
#[pyo3(
signature=(d, bidirectional=false, multigraph=true),
)]
pub fn directed_heavy_square_graph(
py: Python,
d: usize,
bidirectional: bool,
multigraph: bool,
) -> PyResult<digraph::PyDiGraph> {
let default_fn = || py.None();
let graph: StablePyGraph<Directed> =
match core_generators::heavy_square_graph(d, default_fn, default_fn, bidirectional) {
Ok(graph) => graph,
Err(_) => return Err(PyIndexError::new_err("d must be an odd number.")),
};
Ok(digraph::PyDiGraph {
graph,
node_removed: false,
check_cycle: false,
cycle_state: algo::DfsSpace::default(),
multigraph,
attrs: py.None(),
})
}
/// Generate an undirected heavy hex graph.
///
/// Fig. 2 of https://arxiv.org/abs/1907.09528
/// An ASCII diagram of the graph is given by:
///
/// .. code-block:: text
///
/// ... D-S-D D ...
/// | | |
/// ...-F F-S-F ...
/// | | |
/// ... D D D ...
/// | | |
/// ... F-S-F F-...
/// | | |
/// .........
/// | | |
/// ... D D D ...
/// | | |
/// ...-F F-S-F ...
/// | | |
/// ... D D D ...
/// | | |
/// ... F-S-F F-...
/// | | |
/// .........
/// | | |
/// ... D D D ...
/// | | |
/// ...-F F-S-F ...
/// | | |
/// ... D D D ...
/// | | |
/// ... F-S-F F-...
/// | | |
/// ... D D-S-D ...
///
///
/// :param int d: distance of the code. If ``d`` is set to ``1`` a
/// :class:`~rustworkx.PyGraph` with a single node will be returned.
/// ``d`` must be an odd number.
/// :param bidirectional: A parameter to indicate if edges should exist in
/// both directions between nodes. Defaults to ``False``.
/// :param bool multigraph: When set to ``False`` the output
/// :class:`~rustworkx.PyGraph` object will not be not be a multigraph and
/// won't allow parallel edges to be added. Instead
/// calls which would create a parallel edge will update the existing edge.
///
/// :returns: The generated heavy hex graph
/// :rtype: PyGraph
/// :raises IndexError: If d is even.
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import graphviz_draw
///
/// graph = rustworkx.generators.heavy_hex_graph(3)
/// graphviz_draw(graph, lambda node: dict(
/// color='black', fillcolor='lightblue', style='filled'))
///
#[pyfunction]
#[pyo3(
signature=(d, multigraph=true),
)]
pub fn heavy_hex_graph(py: Python, d: usize, multigraph: bool) -> PyResult<graph::PyGraph> {
let default_fn = || py.None();
let graph: StablePyGraph<Undirected> =
match core_generators::heavy_hex_graph(d, default_fn, default_fn, false) {
Ok(graph) => graph,
Err(_) => return Err(PyIndexError::new_err("d must be an odd number.")),
};
Ok(graph::PyGraph {
graph,
node_removed: false,
multigraph,
attrs: py.None(),
})
}
/// Generate a directed heavy hex graph.
///
/// Fig. 2 of https://arxiv.org/abs/1907.09528
/// An ASCII diagram of the graph is given by:
///
/// .. code-block:: text
///
/// ... D-S-D D ...
/// | | |
/// ...-F F-S-F ...
/// | | |
/// ... D D D ...
/// | | |
/// ... F-S-F F-...
/// | | |
/// .........
/// | | |
/// ... D D D ...
/// | | |
/// ...-F F-S-F ...
/// | | |
/// ... D D D ...
/// | | |
/// ... F-S-F F-...
/// | | |
/// .........
/// | | |
/// ... D D D ...
/// | | |
/// ...-F F-S-F ...
/// | | |
/// ... D D D ...
/// | | |
/// ... F-S-F F-...
/// | | |
/// ... D D-S-D ...
///
///
/// :param int d: distance of the code. If ``d`` is set to ``1`` a
/// :class:`~rustworkx.PyDiGraph` with a single node will be returned.
/// ``d`` must be an odd number.
/// :param bool multigraph: When set to ``False`` the output
/// :class:`~rustworkx.PyDiGraph` object will not be not be a multigraph and
/// won't allow parallel edges to be added. Instead
/// calls which would create a parallel edge will update the existing edge.
///
/// :returns: The generated heavy hex directed graph
/// :rtype: PyDiGraph
/// :raises IndexError: If d is even.
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import graphviz_draw
///
/// graph = rustworkx.generators.directed_heavy_hex_graph(3)
/// graphviz_draw(graph, lambda node: dict(
/// color='black', fillcolor='lightblue', style='filled'))
///
#[pyfunction]
#[pyo3(
signature=(d, bidirectional=false, multigraph=true),
)]
pub fn directed_heavy_hex_graph(
py: Python,
d: usize,
bidirectional: bool,
multigraph: bool,
) -> PyResult<digraph::PyDiGraph> {
let default_fn = || py.None();
let graph: StablePyGraph<Directed> =
match core_generators::heavy_hex_graph(d, default_fn, default_fn, bidirectional) {
Ok(graph) => graph,
Err(_) => return Err(PyIndexError::new_err("d must be an odd number.")),
};
Ok(digraph::PyDiGraph {
graph,
node_removed: false,
check_cycle: false,
cycle_state: algo::DfsSpace::default(),
multigraph,
attrs: py.None(),
})
}
// MAX_ORDER is determined based on the pointer width of the target platform
#[cfg(target_pointer_width = "64")]
const MAX_ORDER: u32 = 60;
#[cfg(not(target_pointer_width = "64"))]
const MAX_ORDER: u32 = 29;
/// Generate an undirected binomial tree of order n recursively.
///
/// :param int order: Order of the binomial tree. The maximum allowed value
/// for order on the platform your running on. If it's a 64bit platform
/// the max value is 60 and on 32bit systems the max value is 29. Any order
/// value above these will raise an ``OverflowError``.
/// :param list weights: A list of node weights. If the number of weights is
/// less than 2**order, extra nodes with None will be appended.
/// :param bool multigraph: When set to ``False`` the output
/// :class:`~rustworkx.PyGraph` object will not be not be a multigraph and
/// won't allow parallel edges to be added. Instead calls which would
/// create a parallel edge will update the existing edge.
///
/// :returns: A binomial tree with 2^n vertices and 2^n - 1 edges.
/// :rtype: PyGraph
/// :raises IndexError: If the length of ``weights`` is greater that 2^n
/// :raises OverflowError: If the input order exceeds the maximum value for the
/// current platform.
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import mpl_draw
///
/// graph = rustworkx.generators.binomial_tree_graph(4)
/// mpl_draw(graph)
///
#[pyfunction]
#[pyo3(
signature=(order, weights=None, multigraph=true),
)]
pub fn binomial_tree_graph(
py: Python,
order: u32,
weights: Option<Vec<PyObject>>,
multigraph: bool,
) -> PyResult<graph::PyGraph> {
if order >= MAX_ORDER {
return Err(PyOverflowError::new_err(format!(
"An order of {} exceeds the max allowable size",
order
)));
}
let default_fn = || py.None();
let graph: StablePyGraph<Undirected> =
match core_generators::binomial_tree_graph(order, weights, default_fn, default_fn, false) {
Ok(graph) => graph,
Err(_) => {
return Err(PyIndexError::new_err(
"num_nodes and weights list not specified",
))
}
};
Ok(graph::PyGraph {
graph,
node_removed: false,
multigraph,
attrs: py.None(),
})
}
/// Generate a directed binomial tree of order n recursively.
///
/// The edges propagate towards right and bottom direction if ``bidirectional`` is ``False``
///
/// :param int order: Order of the binomial tree. The maximum allowed value
/// for order on the platform your running on. If it's a 64bit platform
/// the max value is 60 and on 32bit systems the max value is 29. Any order
/// value above these will raise an ``OverflowError``.
/// :param list weights: A list of node weights. If the number of weights is
/// less than 2**order, extra nodes with None will be appended.
/// :param bidirectional: A parameter to indicate if edges should exist in
/// both directions between nodes. Defaults to ``False``.
/// :param bool multigraph: When set to ``False`` the output
/// :class:`~rustworkx.PyDiGraph` object will not be not be a multigraph and
/// won't allow parallel edges to be added. Instead
/// calls which would create a parallel edge will update the existing edge.
///
/// :returns: A directed binomial tree with 2^n vertices and 2^n - 1 edges.
/// :rtype: PyDiGraph
/// :raises IndexError: If the length of ``weights`` is greater that 2^n
/// :raises OverflowError: If the input order exceeds the maximum value for the
/// current platform.
///
/// .. jupyter-execute::
///
/// import rustworkx.generators
/// from rustworkx.visualization import mpl_draw