From b2bcd79d78276289fab3406280c787277476b357 Mon Sep 17 00:00:00 2001 From: Jed Barber Date: Sat, 14 Nov 2020 00:35:45 +1100 Subject: Changed No_Loops_Introduced to Loops_Introduced --- test/rat_tests-parse_graphs.adb | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'test/rat_tests-parse_graphs.adb') diff --git a/test/rat_tests-parse_graphs.adb b/test/rat_tests-parse_graphs.adb index dce8637..1a42ea6 100644 --- a/test/rat_tests-parse_graphs.adb +++ b/test/rat_tests-parse_graphs.adb @@ -278,22 +278,22 @@ package body Rat_Tests.Parse_Graphs is end Valid_Starts_Finishes_Check; - function No_Loops_Introduced_Check + function Loops_Introduced_Check return Test_Result is My_Graph : Graphs.Parse_Graph := Paper_Graph; begin - if My_Graph.No_Loops_Introduced ((Sen_1, 4), (1 => (Sen_1, 4))) or - not My_Graph.No_Loops_Introduced ((Sen_1, 4), (1 => (NP_1, 4))) + if not My_Graph.Loops_Introduced ((Sen_1, 4), (1 => (Sen_1, 4))) or + My_Graph.Loops_Introduced ((Sen_1, 4), (1 => (NP_1, 4))) then return Fail; end if; My_Graph.Connect ((Sen_1, 4), (1 => (NP_1, 4))); - if My_Graph.No_Loops_Introduced ((NP_1, 4), (1 => (Sen_1, 4))) then + if not My_Graph.Loops_Introduced ((NP_1, 4), (1 => (Sen_1, 4))) then return Fail; end if; return Pass; - end No_Loops_Introduced_Check; + end Loops_Introduced_Check; function Is_Sorted_Check -- cgit