From 2b65e2f46878a1caf5e6d830c2df4af172df7a17 Mon Sep 17 00:00:00 2001 From: Sebastian Gutsche Date: Fri, 2 Mar 2018 10:26:59 +0100 Subject: [PATCH] Use VALUE_GLOBAL instead of ValueGlobal --- gap/AttributeScheduler.gi | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gap/AttributeScheduler.gi b/gap/AttributeScheduler.gi index bfd5f26..4319e87 100644 --- a/gap/AttributeScheduler.gi +++ b/gap/AttributeScheduler.gi @@ -80,7 +80,7 @@ InstallGlobalFunction( __ATTRIBUTESCHEDULER_evaluate_recursive, local i, props; if spanning_tree.( name_property ) = 0 then - return ValueGlobal( name_property )( object ); + return VALUE_GLOBAL( name_property )( object ); fi; props := graph!.( name_property )[ spanning_tree.( name_property ) ]; @@ -89,7 +89,7 @@ InstallGlobalFunction( __ATTRIBUTESCHEDULER_evaluate_recursive, __ATTRIBUTESCHEDULER_evaluate_recursive( graph, i, object, spanning_tree ); od; - return ValueGlobal( name_property )( object ); + return VALUE_GLOBAL( name_property )( object ); end ); @@ -107,7 +107,7 @@ InstallMethod( ComputeProperty, od; for i in [ 1 .. Length( all_names ) ] do - if Tester( ValueGlobal( all_names[ i ] ) )( object ) then + if Tester( VALUE_GLOBAL( all_names[ i ] ) )( object ) then how_to_compute.( all_names[ i ] ) := 0; fi; od;