# HG changeset patch # User Paul Boddie # Date 1476473557 -7200 # Node ID 5782a5f685ef73b17b0c182c535ae8a800004069 # Parent 2219668ae7d93e477f7c5b353a03f5e952bd447f Fixed optimiser access to the deducer's access plans. diff -r 2219668ae7d9 -r 5782a5f685ef optimiser.py --- a/optimiser.py Fri Oct 14 18:34:14 2016 +0200 +++ b/optimiser.py Fri Oct 14 21:32:37 2016 +0200 @@ -56,7 +56,6 @@ # Specific attribute access information. - self.access_plans = {} self.access_instructions = {} # Object structure information. @@ -340,7 +339,7 @@ "Expand access plans into instruction sequences." - for access_location, access_plan in self.access_plans.items(): + for access_location, access_plan in self.deducer.access_plans.items(): # Obtain the access details.