Skip to content

Commit 46d4bcf

Browse files
committed
resolved comments
1 parent 62968e1 commit 46d4bcf

2 files changed

Lines changed: 18 additions & 18 deletions

File tree

tests/source/hgl/test_hypergraph.cpp

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -371,28 +371,28 @@ TEST_CASE_TEMPLATE_INSTANTIATE(
371371
hypergraph_traits_template,
372372
hgl::list_hypergraph_traits<
373373
hgl::impl::hyperedge_major_t,
374-
hgl::undirected_t>, // undirected hyperedge-major incicence list
374+
hgl::undirected_t>, // undirected hyperedge-major incidence list
375375
hgl::list_hypergraph_traits<
376376
hgl::impl::hyperedge_major_t,
377-
hgl::bf_directed_t>, // bf-directed hyperedge-major incicence list
377+
hgl::bf_directed_t>, // bf-directed hyperedge-major incidence list
378378
hgl::list_hypergraph_traits<
379379
hgl::impl::vertex_major_t,
380-
hgl::undirected_t>, // undirected vertex-major incicence list
380+
hgl::undirected_t>, // undirected vertex-major incidence list
381381
hgl::list_hypergraph_traits<
382382
hgl::impl::vertex_major_t,
383-
hgl::bf_directed_t>, // bf-directed vertex-major incicence list
383+
hgl::bf_directed_t>, // bf-directed vertex-major incidence list
384384
hgl::matrix_hypergraph_traits<
385385
hgl::impl::hyperedge_major_t,
386-
hgl::undirected_t>, // undirected hyperedge-major incicence matrix
386+
hgl::undirected_t>, // undirected hyperedge-major incidence matrix
387387
hgl::matrix_hypergraph_traits<
388388
hgl::impl::hyperedge_major_t,
389-
hgl::bf_directed_t>, // bf-directed hyperedge-major incicence matrix
389+
hgl::bf_directed_t>, // bf-directed hyperedge-major incidence matrix
390390
hgl::matrix_hypergraph_traits<
391391
hgl::impl::vertex_major_t,
392-
hgl::undirected_t>, // undirected vertex-major incicence matrix
392+
hgl::undirected_t>, // undirected vertex-major incidence matrix
393393
hgl::matrix_hypergraph_traits<
394394
hgl::impl::vertex_major_t,
395-
hgl::bf_directed_t> // bf-directed vertex-major incicence matrix
395+
hgl::bf_directed_t> // bf-directed vertex-major incidence matrix
396396
);
397397

398398
TEST_CASE_TEMPLATE_DEFINE(
@@ -436,42 +436,42 @@ TEST_CASE_TEMPLATE_INSTANTIATE(
436436
hgl::impl::hyperedge_major_t,
437437
hgl::undirected_t,
438438
hgl::types::name_property,
439-
hgl::types::name_property>, // undirected hyperedge-major incicence list
439+
hgl::types::name_property>, // undirected hyperedge-major incidence list
440440
hgl::list_hypergraph_traits<
441441
hgl::impl::hyperedge_major_t,
442442
hgl::bf_directed_t,
443443
hgl::types::name_property,
444-
hgl::types::name_property>, // bf-directed hyperedge-major incicence list
444+
hgl::types::name_property>, // bf-directed hyperedge-major incidence list
445445
hgl::list_hypergraph_traits<
446446
hgl::impl::vertex_major_t,
447447
hgl::undirected_t,
448448
hgl::types::name_property,
449-
hgl::types::name_property>, // undirected vertex-major incicence list
449+
hgl::types::name_property>, // undirected vertex-major incidence list
450450
hgl::list_hypergraph_traits<
451451
hgl::impl::vertex_major_t,
452452
hgl::bf_directed_t,
453453
hgl::types::name_property,
454-
hgl::types::name_property>, // bf-directed vertex-major incicence list
454+
hgl::types::name_property>, // bf-directed vertex-major incidence list
455455
hgl::matrix_hypergraph_traits<
456456
hgl::impl::hyperedge_major_t,
457457
hgl::undirected_t,
458458
hgl::types::name_property,
459-
hgl::types::name_property>, // undirected hyperedge-major incicence matrix
459+
hgl::types::name_property>, // undirected hyperedge-major incidence matrix
460460
hgl::matrix_hypergraph_traits<
461461
hgl::impl::hyperedge_major_t,
462462
hgl::bf_directed_t,
463463
hgl::types::name_property,
464-
hgl::types::name_property>, // bf-directed hyperedge-major incicence matrix
464+
hgl::types::name_property>, // bf-directed hyperedge-major incidence matrix
465465
hgl::matrix_hypergraph_traits<
466466
hgl::impl::vertex_major_t,
467467
hgl::undirected_t,
468468
hgl::types::name_property,
469-
hgl::types::name_property>, // undirected vertex-major incicence matrix
469+
hgl::types::name_property>, // undirected vertex-major incidence matrix
470470
hgl::matrix_hypergraph_traits<
471471
hgl::impl::vertex_major_t,
472472
hgl::bf_directed_t,
473473
hgl::types::name_property,
474-
hgl::types::name_property> // bf-directed vertex-major incicence matrix
474+
hgl::types::name_property> // bf-directed vertex-major incidence matrix
475475
);
476476

477477
TEST_SUITE_END(); // test_hypergraph

tests/source/hgl/test_incidence_list.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ TEST_CASE_FIXTURE(
315315

316316
TEST_CASE_FIXTURE(
317317
test_undirected_hyperedge_major_incidence_list,
318-
"bind should add the vertex to the given hyperedge's storage only if the they are not bound"
318+
"bind should add the vertex to the given hyperedge's storage only if they are not bound"
319319
) {
320320
sut_type sut{constants::n_vertices, constants::n_hyperedges};
321321
REQUIRE(std::ranges::empty(sut.incident_vertices(constants::id1)));
@@ -335,7 +335,7 @@ TEST_CASE_FIXTURE(
335335

336336
TEST_CASE_FIXTURE(
337337
test_undirected_hyperedge_major_incidence_list,
338-
"unbind should remove the vertex from the given hyperedge's storage only if the they are bound"
338+
"unbind should remove the vertex from the given hyperedge's storage only if they are bound"
339339
) {
340340
sut_type sut{constants::n_vertices, constants::n_hyperedges};
341341
REQUIRE(std::ranges::empty(sut.incident_vertices(constants::id1)));

0 commit comments

Comments
 (0)